RE: [PHP-DB] Probably a stupid Array question

2002-03-30 Thread Demitrious S. Kelly
$words[0] would be the first word, $words[1] would be the second word... $words[10] would be the eleventh word, etc, etc -Original Message- From: Chris Payne [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 30, 2002 9:08 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Probably a stupid Array

Re: [PHP-DB] Probably a stupid Array question

2002-03-30 Thread Jason Wong
On Sunday 31 March 2002 13:07, Chris Payne wrote: Hi there everyone, I do this to explode my input line which consists of however many words: $words = explode( , $testb); Now i've done this and I presume that $words holds all the info as an Array (new to arrays, sorry if i'm wrong)