I need help posting some info to a register.php file to complete a registration.
I have a result.php with the foll code that is not posting the info to register.php, almost sure Im missing some POST somewhere, but my php skills are almost zero, sorry
here is the code i have in result.php
<?PHP
error_reporting(53);
include("config.php");
session_start();
$noautamationcode = $HTTP_SESSION_VARS["noautamationcode"];
if(($thecode == $noautamationcode) && $thecode ){
$url = "register.php?newloginID=$newloginID&newpass=$newpass&newemail=$newemail&newsavefiles=no&newuserlevel=1&newtopbanner=yes&newbottombanner=yes®ister=ok&flash=no®istertype=html";
header("Location $url");
} else {
echo("Grrrr!");
}
?>
can someone help me?
thanks in adv