Your form page has something like this in it:
<form method="post" action="process.php" enctype="multipart/form-data">
This says look in the same folder for "process.php".
If you want to keep it somewhere else modify the line like this:
<form method="post" action="somewhere_else/process.php" enctype="multipart/form-data">
Otherwise the process.php file must be in the same folder.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm having a form problem.
My page is at http://local926.org/contact1.htm
Everything works except the submit button.
I know the error is in the FORM ACTION tag but I don't know what belongs in that tag..
Any help would be greatly appreciated...
Alan
Staten Island, NY
Is the process.php file in the same folder as the form?
NO! It is in a different folder.
Could that be the problem???
Thanks!
Alan
Your form page has something like this in it:
<form method="post" action="process.php" enctype="multipart/form-data">
This says look in the same folder for "process.php".
If you want to keep it somewhere else modify the line like this:
<form method="post" action="somewhere_else/process.php" enctype="multipart/form-data">
Otherwise the process.php file must be in the same folder.
Works OK now that I put the files in the same directory as the webpage
EXCEPT
for a step # 5 error in process3.php Line # 467 Cannot create file??????
Process3.php is part of the generator and should not be part of your working form.