I am running site like watchmedia.net At comments area I facing this problem Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 50 in /home/quick/public_html/watchmedia.net/inc/mysql.class.php on line 33 Please this there anyone to help me ?
where u getting this error ? i fly around ur site and i didn't find any errors. Only lots of popup with clickser.
check this line public_html/watchmedia.net/inc/mysql.class.php on line 33 what is that line ? that is sql problem . Code not pulling data from sql.
function result($query,$num = 0) { $query = mysql_result($query,$num); return $query; here is that code on line 33
change to this function result($query,$num = 1) { $query = mysql_result($query,$num); return $query; if not solved then i need to check ur database thx
mysql_result() will throw E_WARNING if mysql_query returns 0 rows, you must check if your query returns any data: mysql_num_rows($result)==0