Re: [PHP] Parsing a CSV file

2001-10-03 Thread Matthew Armsby
Example "; } ?> Please note, empty elements will not be handled btw Any Australian employers want a programmer for awhile? - Original Message - From: Sharat Hegde <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 03, 2001 9:55 PM Subject: [PHP] Parsing a CSV fil

Re: [PHP] php & javascript

2001-10-03 Thread Matthew Armsby
> document.myform["email[]"] seems to give me a syntax error. Check if your already using "" you'll need to use single quotes as so: (tested on IE 5.5 and NS 4.08, works) >> If you leave it as email, you can then convert the email variable into an array using explode() or split() as so: > On

Re: [PHP] php & javascript

2001-10-03 Thread Matthew Armsby
Leave the name as email. If you really want to call it email[], you should be able to reference this in JavaScript as the object document.myform["email[]"] If you leave it as email, you can then convert the email variable into an array using explode() or split() as so: Matt > Hey all! >