[PHP] cannot find mysql_connect; _pconnect

2002-06-18 Thread Anthony 'Crash' Ciarochi
I am having trouble connecting to my MySQL database: The error message I receive in my browser is: Fatal error: Call to undefined function: mysql_connect() in ../results.php on line 21 The line in question is a simple db connection: $db = mysql_connect(localhost, test, test123); Similar

Re: [PHP] cannot find mysql_connect; _pconnect

2002-06-18 Thread Anthony 'Crash' Ciarochi
, Anthony 'Crash' Ciarochi wrote: I am having trouble connecting to my MySQL database: The error message I receive in my browser is: Fatal error: Call to undefined function: mysql_connect() in ../results.php on line 21 The line in question is a simple db connection: $db = mysql_connect

[PHP] variables not being passed from form ??

2002-06-18 Thread Anthony 'Crash' Ciarochi
I have a web page which contains a form whose action is a php script. Unfortunately, NONE of the form's variables are being passed when the form is submitted. For example: the submit button's name is 'submit', and the value is 'Add', but in the receiving php script, $submit is empty, and so is

[PHP] Re: variables not being passed from form ??

2002-06-18 Thread Anthony 'Crash' Ciarochi
Got it! 'file_uploads' was Off in /etc/php.ini. That was stopping all form variables from being passed from the file upload form Thanks all! AFC Anthony 'Crash' Ciarochi [EMAIL PROTECTED] wrote in message 024e01c21711$111d2200$[EMAIL PROTECTED]">news:024e01c21711$111d2200$[EMAIL P

[PHP] Re: Variable Problems with 'multipart/form-data'

2002-06-18 Thread Anthony 'Crash' Ciarochi
I think I just solved this for myself! Look in your /etc/php.ini for: file_uploads = Off ...change it to file_uploads = On - AFC Seoz [EMAIL PROTECTED] wrote in message 005601c2173a$1a25ebb0$764efea9@dreamfactory">news:005601c2173a$1a25ebb0$764efea9@dreamfactory... Hello I'm Korean PHPer.