I have written a PHP function that uses the MySQL command:
LOAD DATA INFILE ...
The command returns the result in mysql_info()
Records: 42 Deleted: 0 Skipped: 0 Warnings: 5
My question is how do you find out what the 5 warnings are.
Does MySQL put them in a log file somewhere and is there a way t
Your _Name1 in your SELECT doesn't have a $ in front of it.
$_query = "select userName from users where userName = '$_Name1' ";
or
$_query = "select userName from users where userName = '".$_Name1."' ";
Also after you query your database you have to get the results from your
select.
$_result aft
Thanks, I didn't know that phpMyAdmin could connect to another server
remotely. I will give it a try.
Mark
_
Mark McCulligh, Application Developer / Analyst
Sykes Canada Corporation www.SykesCanada.com
[EMAIL PROTECTED]
--
PHP Database Mailing
ist already.
Thanks, Mark.
_____
Mark McCulligh, Application Developer / Analyst
Sykes Canada Corporation www.SykesCanada.com
[EMAIL PROTECTED]
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
choice with is
better or are they about the same. Logic would say ODBC is slower because
it is another layer on top of the DB, but I don't know.
Mark.
_
Mark McCulligh, Application Developer / Analyst
Sykes Canada Corporation www.SykesCanada.com
(888)225