Question 1
Quel est la différence entre echo et print_r
Print_r affiche une chaîne de caractères et echo affiche un tableau (array)
Echo affiche une chaîne de caractères et print_r affiche un tableau (array)
Pas de différence
Question 2
Pour récupérer l'adresse ip de l'utilisateur, on utilise une variable superglobale, laquelle?
$_SERVER
$_SESSION
$_POST
Question 3
Comment faire une redirection sous PHP ?
Location("page.php");
Redirect("Location: page.php");
Header("Location: page.php");
Question 4
Quel est l'opérateur de concaténation sous PHP
+ (plus)
. (Point)
- (tiret)
Question 5
Coche l'intrus :
<! echo "hello"; !>
<?php echo "hello"; ?>
<?="hello" ?>
Commentaires