Hi this is the first time I've written php to process form data, I have already implemented the jQuery to validate, and I have written the PHP to process the form, and also encryption, salting escaping and filtering, before I write the code to insert the data into the db, I am just wondering how to send the results of the php validation back to the front end. There is a level of security in the jQuery, however this might be turned off, but the level of security through the php is greater, especially regarding email validation. The PHP is in a seperate file, so I'm wondering the best way to connect the PHP programs back to the front end to inform the user as to whether their data is acceptable. I've heard of session redirects, and also Ajax but would not want to use this in case JS is turned off.
Thanks Ant