Hi Group.
I have an html page where a form submits to a php page. It works, but the php page loads an entire page to return just one variable. I was thinking there would be a better and neater way to return the php in the form of a lightbox or modal.
Here is my form code
[code]
my doadd.php has the following.
$message = $_POST['message'];
It inserts this data into a database and then echos the results to the doadd.php page for the user to see.
The results are just a single line, hence the need for a simpler box.
Any help appreciated!