Code: Select all
<?php
$été="été"; // without syntax color in rapidPHP 2015
/* a letter is a-z, A-Z, and the bytes from 127 through 255
https://www.php.net/manual/en/language.variables.basics.php */
echo $été;
?>
Moderator: kfury77
Code: Select all
<?php
$été="été"; // without syntax color in rapidPHP 2015
/* a letter is a-z, A-Z, and the bytes from 127 through 255
https://www.php.net/manual/en/language.variables.basics.php */
echo $été;
?>
The first character of a variable name must be either a letter, an underscore character (_), or the at symbol (@).belgioumFR wrote:And, in the next rapidPHP versions, it's also without syntax color ?Code: Select all
<?php $été="été"; // without syntax color in rapidPHP 2015 /* a letter is a-z, A-Z, and the bytes from 127 through 255 https://www.php.net/manual/en/language.variables.basics.php */ echo $été; ?>