View Single Post
  #87  
Old 18th October 2009, 18:52
chakalster chakalster is offline
Member
 
Join Date: Oct 2009
Turkey
Posts: 7
Default
Quote:
Originally Posted by icmono View Post

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:
 
thx for this :)

u forgot write ;
this codes for functions_announce.php
and this is solution of
Tracker sending invalid data: <NULL>
Reply With Quote