Changes

m
Line 31: Line 31:  
* Do not use '''PHP_SELF'''. Use instead $_SERVER["PHP_SELF"].
 
* Do not use '''PHP_SELF'''. Use instead $_SERVER["PHP_SELF"].
   −
* When several variables must be initialized with same value, you must use several instructions
+
* When several variables must be initialized with same value, you must use several instructions (separated with ;)
 
<source lang="php">
 
<source lang="php">
 
$var1=1;$var2=1;$var3=1;
 
$var1=1;$var2=1;$var3=1;