Re: [PHP] problem that has been really annoying me...

2001-01-15 Thread Toby Butzon
kes no difference for this example; just my personal pref to stick with echo). Regards, --Toby - Original Message - From: "Toby Butzon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, January 15, 2001 12:35 PM Subject: Re: [PHP

Re: [PHP] problem that has been really annoying me...

2001-01-15 Thread Toby Butzon
First of all check this: print(stripslashes("$num[sub]")); ... should be... print(stripslashes($num['sub'])); That will change the result, but I don't know if it's the result you're going for... One other note of interest... why is your variable named $num? If it was supposed to be a significan