surajkandukuri Posted October 20, 2009 Share Posted October 20, 2009 Hi all, I am facing a strange issue here and I cannot thinkof any valid reason why it is doing like this basic query :- $sql3="SELECT Count(*) as count FROM `objectives` WHERE `ObjectiveJobPosition`=$jobid and `ObjectiveinCat`=$cat_num"; $result_sql3=mysql_query($sql3); $row3=mysql_fetch_array($result_sql3); $obj_num=$row3['count']; echo($obj_num); where echo($jobid); -> 1 echo($cat_num); ->1 OUTPUT:- 8 which should be 10 I get the output 10 when I execute the query with 1 and 1 (instead of $jobid and $cat_num) and When i run the query in phpmyadmin it returns 10. Please i cannot find out the error I made here. Link to comment https://forums.phpfreaks.com/topic/178389-solved-strange-behaviour-with-select-count/ Share on other sites More sharing options...
surajkandukuri Posted October 20, 2009 Author Share Posted October 20, 2009 Sorry Problem solved I WAS USING other varialbes inthe query Link to comment https://forums.phpfreaks.com/topic/178389-solved-strange-behaviour-with-select-count/#findComment-940745 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.