Justtechjobs.com Find a programming school near you






Online Campus Both


php-db | 2002091

[PHP-DB] [mysql] query wierness :/ From: :B nerdy (thoa0025 <email protected>)
Date: 09/03/02

this function doesnt work

        function query($sql)
        {
                return mysql_query($sql, $this->mysql_link) or die("query
failed: $sql");
        }

but this one does

        function query($sql)
        {
                $mysql_result = mysql_query($sql, $this->mysql_link) or
die("query failed: $sql");
                return $mysql_result;
        }

why does it matter??

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php