I have been tryin to insert data with following code:
$query= "INSERT INTO Guestbook (namel,email,comments) VALUES
('$namel','$email','$comments')";
echo "$query";
however database dont get the data that is passed. But I can insert the data by copying the printed version to myPHPAdmin window.
What could be the reason that my data is not passed to database ?
thanks