php - If the form (on another website displayed through an iFrame has been sent), allow the user to proceed -


site 1 has contact form.

site 2 has content on next page accessible guest users if have filled out , sent form on site 1.

does have ideas of how accomplished?

enter image description here

just write in php file receive form data

if(isset($_post['submit'])) {  // whatever want        header('location: http://www.your_site2_address.com'); } 

Comments

Popular posts from this blog

javascript - Trigger mouseenter when an animated element touches mouse -

json - Zend error Connection -

java - Using Spring @Transactional with a combination of readOnly and write, when does this entity get committed? -