Re: [PHP-DB] Apache 2

2001-09-26 Thread Edward Marczak
On 9/25/01 8:49 AM, Mike Dolan [EMAIL PROTECTED] pressed the keys forming the message: Does anyone know of a good tutorial/walkthrough on how to get apache2, mysql, and php working in linux? I recently set up a server aiming at this...couldn't get PHP running under Apache 2.0. Downloaded

Re: [PHP-DB] Dynamic Drop Down Box

2002-03-06 Thread Edward Marczak
On 3/5/02 3:34 PM, Leotta, Natalie (NCI/IMS) [EMAIL PROTECTED] wrote: This can be done with JavaScript - I don't know if you can do it in PHP. ...unless the drop-downs are on separate pages. E.g.: page 1 just asks for make, once selected, load up page 2 with choices appropriate to the first

Re: [PHP-DB] mail() function

2002-06-10 Thread Edward Marczak
On 6/10/02 5:02 AM, Dib, Walid (MED, Stagiaire GEMS) [EMAIL PROTECTED] pressed the keys forming the message: Hello I want to test the mail() function locally, i'm using esays php, how can I do that? Not sure what esays php is, but you don't say what platform you're on. Basically, you need

Re: [PHP-DB] Get the ts of the last change???

2002-06-18 Thread Edward Marczak
On 6/17/02 5:18 AM, Alex Elderson [EMAIL PROTECTED] pressed the keys forming the message: Hi, Is it possible to get the time of the last change of a mysql table?? in php? Sure. Try this: $info = mysql_fetch_array(mysql_query(show table status from dbname like 'tablename')); echo Last

Re: [PHP-DB] MySQL Clustering, redundancy

2002-06-18 Thread Edward Marczak
On 6/18/02 9:19 AM, Adam Voigt [EMAIL PROTECTED] pressed the keys forming the message: I have never actually tried to program against something which talks to multiple DB's, the quickest way would be in your DB connection code to have something that will either: A. Try the first DB and

Re: [PHP-DB] Debugging/monitoring traffic to MySQL

2002-07-18 Thread Edward Marczak
On 7/18/02 8:30 PM, Clive Bruton [EMAIL PROTECTED] wrote: Is there a way to see the traffic between PHP and MySQL, ie see the statements/raw data that is sent between the two processes. I've tried running the MYSQL client, but there doesn't seem to be any obvious command to do this. Some