RE: [PHP-DB] Link for next db record

2002-05-13 Thread Beau Lebens
3 May 2002 3:14 PM // To: [EMAIL PROTECTED] // Subject: Re: [PHP-DB] Link for next db record // // // This line sets $row["rv_space"] // echo"Search Record by Space Number //  "; // // // // "Beau Lebens" <[EMAIL PROTECTED]> wrote in message // news:[E

Re: [PHP-DB] Link for next db record

2002-05-12 Thread Jennifer Downey
/ -Original Message- > // From: Jennifer Downey [mailto:[EMAIL PROTECTED]] > // Sent: Monday, 13 May 2002 2:01 PM > // To: [EMAIL PROTECTED] > // Subject: Re: [PHP-DB] Link for next db record > // > // > // Hi Beau, > // > // I have a form that selects an rv elect

RE: [PHP-DB] Link for next db record

2002-05-12 Thread Beau Lebens
How are you setting the value for $row["rv_space"] ? // -Original Message- // From: Jennifer Downey [mailto:[EMAIL PROTECTED]] // Sent: Monday, 13 May 2002 2:01 PM // To: [EMAIL PROTECTED] // Subject: Re: [PHP-DB] Link for next db record // // // Hi Beau, // // I have a

Re: [PHP-DB] Link for next db record

2002-05-12 Thread Jennifer Downey
Hi Beau, I have a form that selects an rv electric record here is a snip and if you need more tell me. This just returns a blank page. $current_date = date("M"); $pkwh =.064; $get_electric = "SELECT * FROM electric WHERE rv_space = $row[rv_space]"; $result = mysql_query($get_electric) or die(mys

RE: [PHP-DB] Link for next db record

2002-05-12 Thread Beau Lebens
jen, assuming you are "currently" looking at a page which is something like php.php?record=3, then you should be able to just do Previous recordNext record and then on the php.php page, you would obviously being grabbing something from the database using a unique identifier or similar. one "got