[PHP] [NEWMAN] Collecting information from a my sql table.

2002-02-24 Thread Philip J. Newman
?php $sql = SELECT * FROM `publisher` WHERE 1 AND `pub_id` = $pub_id LIMIT 1; $sql_result = mysql_query($sql, $connection) or die (Could not get Query); while ($row = mysql_fetch_array($sql_result)) { $pub_id = $row[pub_id]; $pub_headline = $row[pub_headline]; $pub_dateline =

RE: [PHP] [NEWMAN] Collecting information from a my sql table.

2002-02-24 Thread Martin Towell
: Monday, February 25, 2002 10:16 AM To: [EMAIL PROTECTED] Subject: [PHP] [NEWMAN] Collecting information from a my sql table. ?php $sql = SELECT * FROM `publisher` WHERE 1 AND `pub_id` = $pub_id LIMIT 1; $sql_result = mysql_query($sql, $connection) or die (Could not get Query); while ($row

Re: [PHP] [NEWMAN] Collecting information from a my sql table.

2002-02-24 Thread Philip J. Newman
RE: [PHP] [NEWMAN] Collecting information from a my sql table.Dang, thanks (o; - Original Message - From: Martin Towell To: 'Philip J. Newman' ; [EMAIL PROTECTED] Sent: Monday, February 25, 2002 12:22 PM Subject: RE: [PHP] [NEWMAN] Collecting information from a my sql table

Re: [PHP] [NEWMAN] Collecting information from a my sql table.

2002-02-24 Thread Richard Baskett
From: Philip J. Newman [EMAIL PROTECTED] Organization: Philip's Domain - Internet Project Reply-To: Philip J. Newman [EMAIL PROTECTED] Date: Mon, 25 Feb 2002 12:15:36 +1300 To: [EMAIL PROTECTED] Subject: [PHP] [NEWMAN] Collecting information from a my sql table. ?php $sql = SELECT