RE: [PHP] Cookies not being read - begging php 4 chapter 8 pg 283

2003-04-04 Thread Paul Kraus
Also when I first run this at the top I get this error... Notice: Undefined index: typeset in c:\inetpub\wwwroot\testing\cookies.php on line 4 Notice: Undefined index: size_sel in c:\inetpub\wwwroot\testing\cookies.php on line 5 I assume its because the var have not been filled but I still need

RE: [PHP] Cookies not being read - begging php 4 chapter 8 pg 283

2003-04-04 Thread Ford, Mike [LSS]
-Original Message- From: Paul Kraus [mailto:[EMAIL PROTECTED] Sent: 04 April 2003 15:42 Also why can I not place these variables in line with the echo statement. If I do it doesn't work. I thought I could just echo face=$_POST['type_sel'] - but it does not work. Please read

RE: [PHP] Cookies not being read - begging php 4 chapter 8 pg 283

2003-04-04 Thread Ford, Mike [LSS]
-Original Message- From: Paul Kraus [mailto:[EMAIL PROTECTED] Sent: 04 April 2003 15:44 Also when I first run this at the top I get this error... Notice: Undefined index: typeset in c:\inetpub\wwwroot\testing\cookies.php on line 4 Notice: Undefined index: size_sel in

RE: [PHP] Cookies not being read - begging php 4 chapter 8 pg 283

2003-04-04 Thread Paul Kraus
Long... I have included everything in an attempt not to leave anything out. I think this book is dated and causing me some issues. Following is data before and after form data My source Code The php generated source code. Paul Kraus I have made the changes. Here is my output before any form

RE: [PHP] Cookies not being read - begging php 4 chapter 8 pg 283

2003-04-04 Thread Paul Kraus
[mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 10:29 AM To: 'Ford, Mike [LSS]'; [EMAIL PROTECTED] Subject: RE: [PHP] Cookies not being read - begging php 4 chapter 8 pg 283 Long... I have included everything in an attempt not to leave anything out. I think this book is dated and causing me some

Re: [PHP] Cookies not being read - begging php 4 chapter 8 pg 283

2003-04-04 Thread Jason Wong
On Saturday 05 April 2003 01:13, Paul Kraus wrote: Ok I fixed this by adding this line to the top of my script. $font=$HTTP_COOKIE_VARS['font']; Then everything worked great. I tried to access them like this $HTTP_COOKIE_VARS[font['type']] but this would not work. Is my syntax wrong are