[PHP] array limits in echo function?

2002-04-08 Thread lmlweb
I'm just curious: if I use within my html codes: ?php echo $fname $lname; ?, I get an error message telling me: Parse error: parse error, expecting `','' or `';'' However, if I take out one of the variables so that it reads ?php echo $lname; ? it works. Has it always been this way? I never

Re: [PHP] array limits in echo function?

2002-04-08 Thread Miguel Cruz
On Mon, 8 Apr 2002, lmlweb wrote: I'm just curious: if I use within my html codes: ?php echo $fname $lname; ?, I get an error message telling me: Parse error: parse error, expecting `','' or `';'' However, if I take out one of the variables so that it reads ?php echo $lname; ? it

Re: [PHP] array limits in echo function?

2002-04-08 Thread lmlweb
Hi Miguel, I'm reading the manual as of this moment. Thank you for saying RTFM so very nicely! I guess I've used $fname $lname before, and just forgot at this point. Cheers, Laurie Miguel Cruz [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Mon, 8 Apr 2002,

Re: [PHP] array limits????

2001-05-11 Thread Jason Stechschulte
On Thu, May 10, 2001 at 10:27:55AM -0400, shaun wrote: is there a limit to the number of fields one can put in an array?? heres the code im using to create the array $arrResIDs = explode(,,$RESID,300); now $RESID has at least 100 different values in it but when i print out the array i only

[PHP] array limits????

2001-05-10 Thread shaun
is there a limit to the number of fields one can put in an array?? heres the code im using to create the array $arrResIDs = explode(,,$RESID,300); now $RESID has at least 100 different values in it but when i print out the array i only get 80 can anyone shed some light on this subject??? --