RE: [PHP-DB] Undefined variables in update query

2013-03-27 Thread VanderHart, Robert
, Robert Cc: php-db@lists.php.net Subject: Re: [PHP-DB] Undefined variables in update query On Tue, Mar 26, 2013 at 10:57 AM, VanderHart, Robert robert.vanderh...@umassmed.edu wrote: I appreciate the replies I've received already; thanks! Sorry for not catching my simple errors before sending out

Re: [PHP-DB] Undefined variables in update query

2013-03-26 Thread Přemysl
Hi, it appears to me that you have some strange input[name] attribute. instead of input type=\text\ name=\$row[department]\ value=\$row[department]\... try input type=\text\ name=department value=\$row[department]\... In php you are not initializing variables. That means $department

RE: [PHP-DB] Undefined variables in update query

2013-03-26 Thread VanderHart, Robert
...@umassmed.edu -Original Message- From: Přemysl [mailto:premysl.fi...@lim.cz] Sent: Tuesday, March 26, 2013 11:46 AM To: php-db@lists.php.net Subject: Re: [PHP-DB] Undefined variables in update query Hi, it appears to me that you have some strange input[name] attribute. instead of input type

Re: [PHP-DB] Undefined variables in update query

2013-03-26 Thread tamouse mailing lists
On Tue, Mar 26, 2013 at 10:57 AM, VanderHart, Robert robert.vanderh...@umassmed.edu wrote: I appreciate the replies I've received already; thanks! Sorry for not catching my simple errors before sending out that message. No worries, no one I have met yet begins life knowing this stuff! If