RE: [PHP-DB] versioning a database

2004-12-10 Thread Norland, Martin
-Original Message- From: Chris Wagner [mailto:[EMAIL PROTECTED] what i want to do is version a database. i am not sure if i am using the right word for this, but... [snip] * where, in the MySQL database could i store a version number? i know Tables have a comment field, which

RE: [PHP-DB] MySQL error...

2004-12-10 Thread Norland, Martin
-Original Message- From: NIPP, SCOTT V (SBCSI) [mailto:[EMAIL PROTECTED] I have been using a PHP page to update a database table for a long time now. Unfortunately, I have noticed that frequently when I perform an update I get back an error saying Table 'tablename' doesn't

[PHP-DB] Data from a pull down menu

2004-12-10 Thread Jason T. Davidson
I have a pull down menu that gathers a list of people from the database. What I am trying to do from there is after scrolling through and finding the correct record and selecting it, the page will then display that records information. I have done some searching and I am assuming that is

Fwd: [PHP-DB] Data from a pull down menu

2004-12-10 Thread Joseph Crawford
-- Forwarded message -- From: Joseph Crawford [EMAIL PROTECTED] Date: Fri, 10 Dec 2004 16:00:33 -0500 Subject: Re: [PHP-DB] Data from a pull down menu To: [EMAIL PROTECTED] well are you looking for an automatic page refresh when a name is selected? If so you need to look into

RE: [PHP-DB] MySQL error...

2004-12-10 Thread NIPP, SCOTT V \(SBCSI\)
No... That is just some strange error generated by the cut and paste. The IS NOT NU LL that is... The other issue with 'tablename'... I simply typed 'tablename' in the e-mail because I didn't remember the exact tablename when I was typing the e-mail. It does actually provide

[PHP-DB] MySQL error...

2004-12-10 Thread NIPP, SCOTT V \(SBCSI\)
I have been using a PHP page to update a database table for a long time now. Unfortunately, I have noticed that frequently when I perform an update I get back an error saying Table 'tablename' doesn't exist. This is becoming more and more annoying. The table obviously exists as the page

RE: [PHP-DB] Data from a pull down menu

2004-12-10 Thread Bastien Koert
form action='somepage.php' method='post' select name='myselect' onChange='form.submit();' option... /select bastien From: Jason T. Davidson [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [PHP-DB] Data from a pull down menu Date: Fri, 10 Dec 2004 14:28:31 -0600 I have