Re: [PHP-DB] Sending multiple items via a single form field

2006-01-30 Thread John Meyer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hayri wrote: > can somebody tell me what the hell does mysql_fetch_assoc do ??? > > thx It fetches a row of a result as an associative array (hash), the same as mysql_fetch_array($retval,MYSQL_ASSOC). -BEGIN PGP SIGNATURE- Version: GnuPG v1.4

Re: [PHP-DB] Sending multiple items via a single form field

2006-01-30 Thread Bastien Koert
RTFM www.php.net/mysql-fetch-assoc bastien From: Hayri <[EMAIL PROTECTED]> To: php-db@lists.php.net Subject: Re: [PHP-DB] Sending multiple items via a single form field Date: Mon, 30 Jan 2006 12:07:32 +0100 can somebody tell me what the hell does mysql_fetch_assoc do ??? thx Micah S

Re: [PHP-DB] Sending multiple items via a single form field

2006-01-30 Thread Hayri
can somebody tell me what the hell does mysql_fetch_assoc do ??? thx Micah Stevens schrieb: You could just seperate the data in the field's value with a delimeter like | or something you wouldn't see in the data, then explode() based on that? What kind of field are you using? Your explanati

Re: [PHP-DB] Sending multiple items via a single form field

2005-11-14 Thread Miles Thompson
At 04:40 PM 11/14/2005, Chris Payne wrote: Hi there everyon, I have a set of form fields dynamically generated but each item must contain 2 pieces of data - the input from the field AND the id that the input represents from the DB. I had this info a while back but had a major HD crash and lost

Re: [PHP-DB] Sending multiple items via a single form field

2005-11-14 Thread Micah Stevens
You could just seperate the data in the field's value with a delimeter like | or something you wouldn't see in the data, then explode() based on that? What kind of field are you using? Your explanation is very vague. On Monday 14 November 2005 12:40 pm, Chris Payne wrote: > Hi there everyon,

[PHP-DB] Sending multiple items via a single form field

2005-11-14 Thread Chris Payne
Hi there everyon, I have a set of form fields dynamically generated but each item must contain 2 pieces of data - the input from the field AND the id that the input represents from the DB. I had this info a while back but had a major HD crash and lost the info I had, how can I do this easily i