Hi all !
I have problem with my php code. I din't paste all code , because its too big, and only need example answer or where can i foind solution. I just paste how i made my code and what is problem.
And i have two problems.
First one is how variable
Second question is how can do form submit with different action , after all error checking ?
I have problem with my php code. I din't paste all code , because its too big, and only need example answer or where can i foind solution. I just paste how i made my code and what is problem.
And i have two problems.
First one is how variable
$linkorigcan see after
$_POST['formsubmitted'], when i get it from redirected page ?
Second question is how can do form submit with different action , after all error checking ?
<?php $linkorig=$_POST['link-orig']; // get destination link from redirected page , for excample http://mikrotik.lv -- works fine if (isset($_POST['formsubmitted'])) { // script try login with credentials with <form action="login.php" --- works fine //Error checking ! if (empty($error)) //if not found any errors { // login with credentials and same form but with <form action="other_login.php" --- i dont know how to do :(/> } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Login Form</title> </head> <body> <form name="login" action="login.php" method="post" class="registration_form" onsubmit="return doLogin()" > <input type="hidden" name="dst" value="<?php echo $linkorig; ?>" /> <input type="hidden" name="popup" value="true" /> <fieldset> <legend>Login Form </legend> <p>Enter Your username and Password Below </p> <div class="elements"> <label for="name">Email :</label> <input type="text" id="e-mail" name="username" size="25" value="" /> </div> <div class="elements"> <label for="Password">Password:</label> <input type="password" id="Password" name="password" size="25" /> </div> <div class="submit"> <input type="hidden" name="formsubmitted" value="TRUE" value="OK" /> <input type="submit" value="Login" /> </div> </fieldset> </form> <!-- $(if error) --> <br /><div style="color: #FF8080; font-size: 9px"> </div> <!-- $(endif) --> <script type="text/javascript"> <!-- document.login.username.focus(); //--> </script> </body> </html>