Thanks, but now it gives me an error.
<?php
require_once("config.php") // include your mysql connection file
$result = mysql_query("SELECT number FROM status ORDER BY number DESC LIMIT 1");
while($row = mysql_fetch_array($result))
{
$number = $row['number'];
echo "Paiement réussi! Vous numéro de commande est $number";
}
?>
That is my code, this is the error:
Parse error: parse error, unexpected T_VARIABLE in C:\Inetpub\vhosts\ivioodgame-fr.com\httpdocs\test.php on line 5