Re: [PHP-DB] Warning - newby question -- $_GET

2002-11-06 Thread Tony72284
Well, first of all, you have to connect to the database. ?php $db_server = localhost; // Usual server. :P $db_login = USERNAME; $db_pass = USERPASS; mysql_connect($db_server,$db_login,$db_pass); ? And, its not always nesecary to have to type in $_GET['id'] to

[PHP-DB] Check If Table Exists

2002-11-03 Thread Tony72284
How do I check to see if a table exists?

Re: [PHP-DB] Check If Table Exists

2002-11-03 Thread Tony72284
RTFM?

Re: [PHP-DB] Am I doing This Right?

2002-11-01 Thread Tony72284
After I upload it was takes me back to the Form. And ignores $replay_file... And I don't know why.

Re: [PHP-DB] Am I doing This Right?

2002-11-01 Thread Tony72284
After I submit the file, it goes back to the form, even though in the script, it says to go to the database and move the uploaded file to a new DIR. It ignores it as if the file wasn't uploaded. As for printing out the variables. All my important variables are

Re: [PHP-DB] Am I doing This Right?

2002-11-01 Thread Tony72284
The server is 4.0.6 ...And I tried to get the owner to update it. He said its not nesscarry.

[PHP-DB] Re: MAIL()

2002-10-31 Thread Tony72284
If your sending it from your Server/Computer and then to another server/www . YOu probally don't have permissions to send the mail.

[PHP-DB] Am I doing This Right?

2002-10-31 Thread Tony72284
?php function war3_replays_submit() { if ( isset($replay_file) ) { $htmlHead = ; pgHead('Shadow Legion :: Warcraft III Replays', $htmlHead); // Get Current DB Entrys $rDB = mysql_query(select * from war3_replays where 1); // Select

[PHP-DB] DB Print Columns and Rows

2002-10-24 Thread Tony72284
Hello PHP people. I was wondering if I could get a question answered? How would I print a Database Table into a table when the DB Table has 4 columns, AND 4 rows. See I only know how to print one column.