RE: [PHP-DB] Re: HTML layout and arrays (WAS : Brain not working, helpneeded :-). .

2005-08-29 Thread Norland, Martin
-Original Message- From: Neil Smith [MVP, Digital media] [mailto:[EMAIL PROTECTED] The variable type you need is called an array, it has numerical indexes : In PHP you can just omit the index and it'll be automatically auto-incremented from zero, so there's no need to maintain a

Re: [PHP-DB] Re: HTML layout and arrays (WAS : Brain not working, helpneeded :-). .

2005-08-29 Thread Edward Vermillion
Norland, Martin wrote: while ($row = mysql_fetch_array($sql_result) { $videos[] = array( 'id' = $row['id'], 'video_link' = $row['video_link'], 'video_thumbnail' = $row['video_thumbname'], 'video_title' =

RE: [PHP-DB] Re: HTML layout and arrays (WAS : Brain not working, helpneeded :-). .

2005-08-29 Thread Neil Smith [MVP, Digital media]
Date: Mon, 29 Aug 2005 07:46:52 -0500 Message-ID: [EMAIL PROTECTED] From: Norland, Martin [EMAIL PROTECTED] To: php-db@lists.php.net Reply-To: php-db@lists.php.net Subject: RE: [PHP-DB] Re: HTML layout and arrays (WAS : Brain not working, helpneeded :-).. -Original Message