Hello all,
I need your help in this problem.
Following is my code.
When I execute the line
SELECT count(issue_id) FROM issue_m
in SQL, the result shown is "3" ( which are actual number of records in the table).
But if I use this line in the following code
$issue_query = "SELECT count(issue_id) FROM issue_m " ;
$issue_result = mysql_query($issue_query) or die ("SELECT for issues count failed.");
$issue_list = mysql_fetch_array($issue_result) ;
echo $issue_list[0] ;
When I execute this code, the result obtained is not "3" , but "7"
Can anybody help me in this?