Jump to content

Help


unidox

Recommended Posts

We need to see more of your code.  Where are you getting the error? How are the variable set?

 

You should also separate the query sting from the query call, so you can do some debugging:

<?php
$q = "SELECT * FROM `pcp_users` ORDER BY 'user_id' DESC WHERE level >= '$lvl' AND level != '1' AND username != '$user' AND conf = '1' LIMIT $start, $limit";
$rs = mysql_query($q) or die("Problem with the query: $q<br>" . mysql_error());
?>

 

Ken

 

Link to comment
https://forums.phpfreaks.com/topic/100979-help/#findComment-516410
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.