Does anyone know if it is possible in php to submit a form without a user having to actually click on a button?
php cant do it because it is on your server. javascript could though because it is on the client.
create a hidden field form give it a value, that way when the user hits enter it automatically forwards and then have a if statment chek if the value is set and if it is continue with the script
Originally posted by thorpe php cant do it because it is on your server. javascript could though because it is on the client.
That's what I figured. I thought I might ask just in case there was something out there I didn't know about.
Thanks for the help!