[PHP-DB] Fatal Error using mysql_connect()

2002-03-12 Thread mailing list
? Regards, Adrian Mcmanus IT Director [EMAIL PROTECTED] -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re(2): [PHP-DB] Fatal Error using mysql_connect()

2002-03-12 Thread mailing list
y ideas? Regards, Adrian -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re(2): Re(2): [PHP-DB] Fatal Error using mysql_connect()

2002-03-12 Thread mailing list
-- La Rochefoucauld >*/ > >-- >PHP Database Mailing List (http://www.php.net/) >To unsubscribe, visit: http://www.php.net/unsub.php It compiled without any errors using -with-mysql=/usr However I still receive an error while trying to connect to my mysql database: Fatal e

[PHP-DB] compiling php for mysql on linux

2002-03-12 Thread mailing list
27;--with-layout=GNU' '--enable-bcmath' '--enable-debugger' '--enable-ftp' '--enable-magic-quotes' '--enable-safe-mode' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-track-vars' '--enable-trans-sid' '--enable-yp' '--enable-wddx' '--without-oci8' '--with-imap=shared' '--with-imap-ssl' '--with-kerberos=/usr/kerberos' '--with-ldap=shared' '--with-mysql=shared' '--with-pgsql=shared' '--with-unixODBC=shared' '--with-apxs=/usr/sbin/apxs' I hope this helps. Regards, Adrian -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re(2): Re(2): Re(2): [PHP-DB] Fatal Error using mysql_connect()

2002-03-13 Thread mailing list
oint --with-mysql=[DIR]. How do I know I am pointing it to the correct directory? Regards, Adrian -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] post to a url and return to same page

2002-03-18 Thread mailing list
the alternate URL's server? Regards, Adrian -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] https post using php

2002-03-27 Thread mailing list
wser: Bad Request Your browser sent a request that this server could not understand. Reason: You're speaking plain HTTP to an SSL-enabled server port. Instead use the HTTPS scheme to access this URL, please. Hint: https://206.11.164.21/ Apache/1.3.20 Server at 206.11.164.21 Port 80 Does anyone have any ideas? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] https post via php

2002-03-28 Thread mailing list
wser: Bad Request Your browser sent a request that this server could not understand. Reason: You're speaking plain HTTP to an SSL-enabled server port. Instead use the HTTPS scheme to access this URL, please. Hint: https://206.11.164.21/ -------- Apache/1.3.20 Server

Re: [PHP-DB] INSERT Won't Insert

2001-08-01 Thread Gremlins Mailing List
n,Country,WebSite) > VALUES > (\"\", > \"$CompanyName\",\"$Address\",\"$City\",\"$StateorProvince\",\"$PostalCode\" > ,\"$Region\",\"$Country\",\"$WebSite\" > "; > > $result = @mysql_query

Re: [PHP-DB] determining the value of an auto-incremented field (mysql)

2001-08-16 Thread Gremlins Mailing List
of order_number > for this entry, i.e. the auto-incremented value assigned by MySQL? Use mysql_insert_id(), it returns the ID generated for an AUTO_INCREMENT column by the previous INSERT query. regards -- Jason Wong Gremlins Associates www.gremlins.com.hk -- PHP Database Mailing List (http:

Re: [PHP-DB] Query construction (again)

2001-08-22 Thread Gremlins Mailing List
ing like: $sql = "SELECT * FROM $tabitem WHERE DATE_ADD(submitDate, INTERVAL 7 DAY) = now()"; Depending on how the date is stored (date + time, or just date) you may have to modify the output of now() to match. hth -- Jason Wong Gremlins Associates www.gremlins.com.hk -- PHP Databas