| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull Requests | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 14:00:01 2025 UTC | 
config ------- Apache 1.3.19 as standalone server PHP 4.0.4pl1 for Win32 platform (standard local developpement station for website creation testing) code ----- <CODE> $query = "insert into createur (cr_nom, cr_prenom, cr_pseudo, cr_age, cr_email, cr_homepage) values (\"".$nom."\", \"".$prenom."\", \"".$pseudo."\", \"".$age."\", \"".$email."\", \"".$homepage."\")"; //create the query string if(($result = mysql_query($query))==FALSE) {...} </CODE> message -------- Warning: Supplied argument is not a valid MySQL-Link resource in d:\ze_ioio\apache\apache\www\addtodatabase.php on line 44 problem -------- Display the message above but still update database ! things tried ------------- - add $connexion in mysql_query($query, $connexion) => result : same problem - print out the string $query before executing it => query is okay - execute query from mysqlmanager utility => no problem reported by mysqlmanager - cut and paste the working mysqlmanager query into source code => problem is still there Please help !