I have some php code and heres parts of it:
$user_name = $_SESSION[‘user_name’];
$varnotes = $_POST[‘formnotes’];
$sql_insert = "INSERT into notestable
(user_name
,notes
) VALUES (’$user_name’,’$varnotes’) ";
I need a php script that allows me to show the last saved ‘note’ that the specific USER that is signed in has made… i got it to save the note to the database, but im clueless on how to have the LAST SAVED NOTE from THAT USER shown on the page…
SOMEONE PLEASE HELP ME!!