[PHP-DB] Creating a ranking

2001-01-16 Thread Fabio Ottolini (EDB)
Hej alla, First of all, a Happy New Year for all of you! My vacations are gone and I now have to come back to my true reality... Databases and PHP. :) A very interesting question for you experts. Let's see if you can help me. I am developing a game with a team and I have to store the scores of

RE: [PHP-DB] Viewing the DB

2001-01-24 Thread Fabio Ottolini (EDB)
show tables; Is that what you need? You want to list all tables of a certain database right? Make sure to select the database using use databasename; before attempting to do this. Best regards, Fábio Ottolini > -Original Message- > From: Scott Fletcher [mailto:[EMAIL PROTECTED]] > Sen

RE: [PHP-DB] php4ts.dll

2001-01-26 Thread Fabio Ottolini (EDB)
This file comes with the Win distribuition that you can find on the following address: http://www.php.net/do_download.php?download_file=php-4.0.4pl1-Win32.zip&source_site=www.php.net Best regards, Fábio Ottolini > -Original Message- > From: Ingvild Segersam [mailto:[EMAIL PROTECTED]]

RE: [PHP-DB] How to upgrade MySQL PHP Client

2001-01-31 Thread Fabio Ottolini (EDB)
As far as I know this is the latest version of thie client. Best regards, Fábio Ottolini > -Original Message- > From: Fabrice Houvet [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 31, 2001 6:24 AM > To: [EMAIL PROTECTED] > Subject: [PHP-DB] How to upgrade MySQL PHP Client > Impor

RE: [PHP-DB] Transfering data between MySQL servers

2001-02-08 Thread Fabio Ottolini (EDB)
Try mysqldump. BR, Fábio Ottolini > -Original Message- > From: Rosen [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 08, 2001 10:30 AM > To: [EMAIL PROTECTED] > Subject: [PHP-DB] Transfering data between MySQL servers > > > Hi, > I have MySQL server on my local machine with some

RE: [PHP-DB] Transfering data between MySQL servers

2001-02-09 Thread Fabio Ottolini (EDB)
Then I think you are talking about replication right? If that's the case I'm not the best person to talk about it (I never used it) but I can assure you that this is a very common matter at MySQL lists that you can find at http://www.mysql.com . BR, Fábio Ottolini > -Original Message-

RE: [PHP-DB] Can you recommend a development tool?

2001-02-09 Thread Fabio Ottolini (EDB)
Homesite is indeed a wonderful program! Syntax highlighting for PHP, MySQL, ASP, Coldfusion... and many other features. In my opinion it's the best stuff out there! BR, Fábio Ottolini > -Original Message- > From: Cal Evans [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 08, 2001

RE: [PHP-DB] Join Sentences

2001-02-09 Thread Fabio Ottolini (EDB)
A good way to do this is using break. Try taking a look at http://www.php.net /Quick Reference / break. It's more powerful than it seems! Exiting nested loops is only one of the possibilities. BR, Fábio Ottolini > -Original Message- > From: Jorge Santos [mailto:[EMAIL PROTECTED]] > Se

[PHP-DB] Bug or what?

2001-03-12 Thread Fabio Ottolini (EDB)
First File - index.php Problem detected!" . "Your browser does not support cookies!" . "Enable cookies and try again."); die; } else { $page = "login.php"; header("Location: $page"); } } ?> Second File - login.php Forecast Tool - ATL Key Account Login: Password: Everything works

RE: [PHP-DB] PHP how to compare?

2001-03-14 Thread Fabio Ottolini (EDB)
Duky, Did you check if you have named correctly your variables in your form? Your statement is more than corret. Try "echoing" your variables before making the comparision to verify if they are set. If not probabily you have a spelling problem on the form variables. BR, Fábio Ottolini P.S.: