Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
I'm already have these cookies set in a form and see their values:Code: Select all
$jewel_condition = $_COOKIE['sellNow']['jewel_condition'];
$metal = $_COOKIE['sellNow']['metal'];
$price = $_COOKIE['sellNow']['price'];
$description = $_COOKIE['sellNow']['description'];
$active = $_COOKIE['sellNow']['active'];
////////////////////////////////////////////////
$package_type = $_COOKIE['sellNow']['package_type'];
$package_id = $_COOKIE['sellNow']['package_id'];
$county = $_COOKIE['sellNow']['county'];
$state = $_COOKIE['sellNow']['state'];
$email = $_COOKIE['sellNow']['email'];
$phone1 = $_COOKIE['sellNow']['phone1'];
$phone2 = $_COOKIE['sellNow']['phone2'];
////////////////////////////////////////////////
$jewelry_type = $_COOKIE['sellNow']['jewelry_type'];
$size = $_COOKIE['sellNow']['size'];Then I have to do some validation after the form processes (process.php)...if it fails, I have tested either way:
Code: Select all
header("Location: userReg.php?error=UE");Code: Select all
javascript: window.location ="userReg.php?error=UE";I have several cookies like this set...I ONLY loose values in these and not any of the others. I'm stumped!! I can see them in the processing form(process.php), but as soon as I go back these are cleared out....and only these
Code: Select all
$package_type = $_COOKIE['sellNow']['package_type'];
$package_id = $_COOKIE['sellNow']['package_id'];
$county = $_COOKIE['sellNow']['county'];
$state = $_COOKIE['sellNow']['state'];
$email = $_COOKIE['sellNow']['email'];
$phone1 = $_COOKIE['sellNow']['phone1'];
$phone2 = $_COOKIE['sellNow']['phone2'];Any ideas would be GREATLY appreciated..
feyd | Please use
Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]