|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-10-24 16:51 UTC] juancho at metallica dot com
[2000-10-25 16:33 UTC] torben@php.net
[2012-02-07 13:16 UTC] cbal at freemail dot hu
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 13:00:01 2025 UTC |
./configure' '--with-apache=../apache_1.3.14' '--enable-track-vars' '--enable-ftp' '--enable-trans-sid' '--disable-debug' '--enable-magic-quotes' <? $conn=mysql_ponnect("localhost","user","pass"); $r=mysql_db_query("mydb","update x='y' where z='p' ",$conn); $n=mysql_affected_rows($r); echo "n= $n"; ?> It prints "n= " and I get this warning: Warning: Supplied argument is not a valid MySQL-Link resource in /mnt/clientes/sancho/html/classes/manage_users.php on line 143 but the data in the database is beeing modified by the update query. It worked fine with 4.0.1pl2 php.ini: [MySQL] mysql.allow_persistent = On mysql.max_persistent = -1 mysql.max_links = -1 mysql.default_port = mysql.default_host = mysql.default_user = mysql.default_password =