I now am missing something silly here.. but can't figure
out....If someone has time, pls tell me where is tat am doing wrong??
<?php
$a;
if($a)
{
echo "want to use header to redirect";
}
?>
<html>
<form action="aa.php" method="post">
<input type="submit" value="submit">
</form>
</html>
<?php
if(condition_true_after_submit_pressed)
{
echo "okkk";
$a=true;
}
?>