I was almost done, then I checked the code with netscape.
Tip to newbes "check your code in as many browsers as you can"
My code worked fine with IE but the cookies did not set with netscape. This is the code:
setcookie('fname', $fname, '', '/', 'www.****.com');
setcookie('lname', $lname, '', '/', 'www.*.com');
setcookie('email', $email, '', '/', 'www.*.com');
setcookie('username', $username, '', '/', 'www.*.com');
setcookie('password', $password, '', '/', 'www.*.com');
setcookie('signedup', $signedup, '', '/', 'www.****.com');
Thanks for any help.
-Troy