par
mario » 01 mars 2006, 08:52
<?php
$new_score = 10;
$point = 3;
$point = $new_score + $point;
echo $point; // affiche 13
?>
ou
<?php
$new_score = 10;
$point = 3;
$point += $new_score;
echo $point; // affiche 13
?>
[php]<?php
$new_score = 10;
$point = 3;
$point = $new_score + $point;
echo $point; // affiche 13
?>[/php]
ou
[php]<?php
$new_score = 10;
$point = 3;
$point += $new_score;
echo $point; // affiche 13
?>[/php]