Code: Select all
// Incorrect
echo "The following user " . $Firstname "has been added to the database";
// Correct
echo "The following user " . $Firstname . "has been added to the database";
Moderators: egami, macek, gesf
Code: Select all
// Incorrect
echo "The following user " . $Firstname "has been added to the database";
// Correct
echo "The following user " . $Firstname . "has been added to the database";