Re: [PHP-DB] DB dont_die and errors

2005-05-28 Thread Alessandro Pasotti
Il 23:15, venerdì 27 maggio 2005, Bastien Koert ha scritto: You should be able to comment out the error message portions that you don't want to display I'm not sure I understand you, are you suggesting to modify DB.php code to change the way it process error messages? If yes, I don't believe

[PHP-DB] How many rows for 100 questions?

2005-05-28 Thread ...helmut
I have a questionary that has 100 questions, Should I create 2 tables 1 with the user information and the second one with the 100 questions? What is your recommendation? Links to tutorials or information are welcome. TIA -- ...helmut helmutgranda.com -- PHP Database Mailing List

[PHP-DB] mysql INNER JOIN

2005-05-28 Thread ioannes
I usually use INNER JOIN to link tables together in a straight line, like a branch. Can I use it to link tables like twigs stemming off the branch. If so, do I use: SELECT TABLE1.FIELD, TABLE2.FIELD, TABLE3.FIELD FROM ( TABLE1 INNER JOIN TABLE2 ON TABLE1.FIELD =TABLE2.FIELD ) INNER JOIN

RE: [PHP-DB] How many rows for 100 questions?

2005-05-28 Thread Bastien Koert
one table for users one table for questions and possible answers one table for what the user fills out in his questionaire Bastien From: ...helmut [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] How many rows for 100 questions? Date: Sat, 28 May 2005 12:19:02 -0500 I have a

Re: [PHP-DB] How many rows for 100 questions?

2005-05-28 Thread Andrés G . Montañez
I have a questionary that has 100 questions, Should I create 2 tables 1 with the user information and the second one with the 100 questions? What is your recommendation? I recommend you the next table configuration: 1 table for users 1 table for the questions (so you can have more than

[PHP-DB] how do i fetch some text

2005-05-28 Thread chintan
how do i fetch some text from a webpage for some generated field? like i want to fetch a score line from a sport site in which the line says score? actually i want to fetch an IP from my ISP's page which displays it with my user name. -- PHP Database Mailing List (http://www.php.net/) To