with some slight changes this code works, but...
edit-cv.php3 wants to use data from sign-up.php3
edit-cv.php3 contains the lines:
print $Username and print $Password
which have to print the username and password from sign-up.php3 and after that a query has to be executed with those variables.
When I use:
print "<meta http-equiv='refresh' content='3;URL=edit-cv.php3'>"; or
print "<meta http-equiv='refresh' content='3;URL=edit-cv.php3?Username=$Username&Password=$Password'>";
an error occurs saying:
Fatal error: Unable to open d:\usr\www\atlas-group\website\careercenter\edit-cv.php3 in - on line 0
No input file specified.
What can I do?
Patrick
BTW:
sign-up.html (contains a form) -->
sign-up.php3 (to check this form) -->
edit-cv.php3 (where the query has to be execute and the variables have to be used).