Can someone help me debugging this ... search an hour and find nothing ...
test.php4?analyse=2
<?
session_start();
// Start DB Connection
$db = mysql_connect('localhost', 'xxxxx', 'xxxxx');
mysql_select_db('visionclient_ca',$db);
if($analyse > "1") {
// Detect DB Info -- Check For Analyse Name
$sql = "SELECT formQuestion FROM f55555 WHERE formName = 'typeTwo'";
$result = mysql_query($sql,$db);
echo $result;
}
// End DB Connection
mysql_close();
?>
the echo return this : Resource id #2
don't know what it mean or where he took this
Steve