Garantie de satisfaction à 100% Disponible immédiatement après paiement En ligne et en PDF Tu n'es attaché à rien
logo-home
PHP Exam Questions With Answers Graded A+ 10,03 €   Ajouter au panier

Examen

PHP Exam Questions With Answers Graded A+

 4 vues  0 fois vendu
  • Cours
  • Établissement

PHP Exam Questions With Answers Graded A+ when should you use single quotes? when there are no variables in the string; if you use single quotes, PHP will not search for variables to replace, which can enhance speed. when should you use double quotes? when a variable contains any amount of ...

[Montrer plus]

Aperçu 2 sur 13  pages

  • 12 juin 2024
  • 13
  • 2023/2024
  • Examen
  • Questions et réponses
avatar-seller
PHP Exam Questions With Answers Graded
A+
when should you use single quotes?
when there are no variables in the string; if you use single quotes, PHP will not search for variables to
replace, which can enhance speed.


when should you use double quotes?
when a variable contains any amount of variables; in general.


can variable names begin with numbers?
no.


can variable names begin with underscores?
yes.


can variable names contain symbols?
no.


are variable names case-sensitive?
yes.


what should be used to have multiple quotations in one string?
the escape character '\':
$string = "I said \"Hello\" to the man.";


can a string with numbers be used as a number?
yes.
$string = "2";
can be used as
$string = 2;
can be used.


what character must all variables begin with?
the dollar sign $.


is data shown in the URL if GET is used?
yes; use for search engines, catalogued pages, pages that would be bookmarked.


is data shown in the URL if POST is used?
no; use for passwords, pages that would not be bookmarked, pages that require security.


what should the action attribute's value contain?
the URL to the php script that will handle the information in the form.

, where is data sent using POST found?
predefined variable $_POST


where is data sent using GET found?
predefined variable $_GET


what type of variable is $_SERVER
$_SERVER is a predefined variable.


what type of variable is $_POST?
predefined variable.


what type of variable is $_GET?
predefined variable.


will print $_POST work? why or why not?
no, because you cannot use the print function on arrays.


will print $_GET work? why or why not?
no, because you cannot use the print function on arrays.


will print $_SERVER work? why or why not?
no, because you cannot use the print function on arrays.


what can be used to print data in an array?
not print; print_r (human readable) can be used.


can arrays contain arrays?
yes, they commonly do contain arrays.


what is an 'index' or 'key'?
what is referred to for a value within an array.
$_POST['name'] may be equal to 'Jane Doe'
$cards[4] may be equal to 'BMW'


what will happen if $_POST['name'] is used in double quotes?
a parse error will occur, to avoid this, create shorthand variables like:
$name1 = $_POST['name1'];
$name2 = $_POST['name2'];


how do you know what to use to get a value from POST or GET?
they are the values of the name attributes of the input tags in the form.
$_POST['name'] or $_GET['name'] refers to the value of <input name="name" /> (depending on the
method of the form).

Les avantages d'acheter des résumés chez Stuvia:

Qualité garantie par les avis des clients

Qualité garantie par les avis des clients

Les clients de Stuvia ont évalués plus de 700 000 résumés. C'est comme ça que vous savez que vous achetez les meilleurs documents.

L’achat facile et rapide

L’achat facile et rapide

Vous pouvez payer rapidement avec iDeal, carte de crédit ou Stuvia-crédit pour les résumés. Il n'y a pas d'adhésion nécessaire.

Focus sur l’essentiel

Focus sur l’essentiel

Vos camarades écrivent eux-mêmes les notes d’étude, c’est pourquoi les documents sont toujours fiables et à jour. Cela garantit que vous arrivez rapidement au coeur du matériel.

Foire aux questions

Qu'est-ce que j'obtiens en achetant ce document ?

Vous obtenez un PDF, disponible immédiatement après votre achat. Le document acheté est accessible à tout moment, n'importe où et indéfiniment via votre profil.

Garantie de remboursement : comment ça marche ?

Notre garantie de satisfaction garantit que vous trouverez toujours un document d'étude qui vous convient. Vous remplissez un formulaire et notre équipe du service client s'occupe du reste.

Auprès de qui est-ce que j'achète ce résumé ?

Stuvia est une place de marché. Alors, vous n'achetez donc pas ce document chez nous, mais auprès du vendeur LectDan. Stuvia facilite les paiements au vendeur.

Est-ce que j'aurai un abonnement?

Non, vous n'achetez ce résumé que pour 10,03 €. Vous n'êtes lié à rien après votre achat.

Peut-on faire confiance à Stuvia ?

4.6 étoiles sur Google & Trustpilot (+1000 avis)

83750 résumés ont été vendus ces 30 derniers jours

Fondée en 2010, la référence pour acheter des résumés depuis déjà 14 ans

Commencez à vendre!
10,03 €
  • (0)
  Ajouter