View Single Post
  #85  
Old 2nd October 2009, 19:59
icmono icmono is offline
Member
 
Join Date: Oct 2009
Romania
Posts: 1
Default
Quote:
Originally Posted by trurl33 View Post
Does anybody solve this problem? Any sugestions?
Any luck? Same problem here...

|| L.E.
Found IT:

after
PHP Code:
function dbconn() {
    global 
$mysql_host$mysql_user$mysql_pass$mysql_db$mysql_charset;
    if (!@
mysql_connect($mysql_host$mysql_user$mysql_pass))
    {
        
err('dbconn: mysql_connect: ' mysql_error());
    }
    
mysql_select_db($mysql_db) or err('dbconn: mysql_select_db: ' mysql_error());

    
mysql_query('SET NAMES '.$mysql_charset); 
just add a
PHP Code:
 

Last edited by icmono; 2nd October 2009 at 20:37. Reason: solved
Reply With Quote