Start over!
The generator does not make these kinds of mistakes. If you go through the process of defining your form, the processor.php file will have what it needs to handle your form. As it is (with the information you have provided) it will be impossible for us to define what needs to go in the processor.php file without knowing more about your form.html and the fields you require.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi there,
I'm having a problem with form submit, it comes empty (using the latest phpFormGenerator version.
This is my processor.php file
<?php
$where_form_is="http://".$_SERVER['SERVER_NAME'].strrev(strstr(strrev($_SERVER['PHP_SELF']),"/"));
$message = stripslashes($message);
mail("xxx@mydvr.info","CONTACT US Form",$message,"From: yyy");
include("confirm.html");
?>
help is very much appreciated!
there is nothing in your processor file. what fields do you have in this form? I don't see any at all.
Thank you! this is how the processor file was generated by the the form creator.
What do I need to add (please give me a sample line)
Thank you/
Start over!
The generator does not make these kinds of mistakes. If you go through the process of defining your form, the processor.php file will have what it needs to handle your form. As it is (with the information you have provided) it will be impossible for us to define what needs to go in the processor.php file without knowing more about your form.html and the fields you require.