pepe_lepew1962
12-28-2008, 07:39 PM
Hello:
I am trying to change the action portion of my form based on criteria, in this case if the counter is equal to 14 then load thankyou.php, else continue on the PHP Self. What this is is a application form that tests whether all the data is okay. I will work on the santizing later but wanted to get this done as it seems to be the hardest, at least for me.
<?php
$frmSubmit = "";
$errFName = "";
if($_POST["ac"]=="login")
{
// If First Name is NOT letters, dash or spaces then display error message.
if(preg_match("/^[A-Z][a-zA-Z -]+$/", $_POST["fname"]) === 0)
$errFName = '<class="errText">First name must be from letters, dashes, spaces and must not start with dash';
else
$frmCounter = $frmCounter + 1;
// Add validation & Santization here
// more of the above ...
// more of the above ...
// more of the above ...
// more of the above ...
if $frmCounter = 14
$frmSubmit = ThankYou.php;
else
$frmSubmit = $PHP_SELF;
}
?>
<body>
<form name="main" action="<?php $frmSubmit ?>" method="POST"><input type="hidden" name="ac" value="login">
I am trying to change the action portion of my form based on criteria, in this case if the counter is equal to 14 then load thankyou.php, else continue on the PHP Self. What this is is a application form that tests whether all the data is okay. I will work on the santizing later but wanted to get this done as it seems to be the hardest, at least for me.
<?php
$frmSubmit = "";
$errFName = "";
if($_POST["ac"]=="login")
{
// If First Name is NOT letters, dash or spaces then display error message.
if(preg_match("/^[A-Z][a-zA-Z -]+$/", $_POST["fname"]) === 0)
$errFName = '<class="errText">First name must be from letters, dashes, spaces and must not start with dash';
else
$frmCounter = $frmCounter + 1;
// Add validation & Santization here
// more of the above ...
// more of the above ...
// more of the above ...
// more of the above ...
if $frmCounter = 14
$frmSubmit = ThankYou.php;
else
$frmSubmit = $PHP_SELF;
}
?>
<body>
<form name="main" action="<?php $frmSubmit ?>" method="POST"><input type="hidden" name="ac" value="login">