0
votes
2answers
141 views

Repeat Result for num rows in php [duplicate]

Possible Duplicate: i can’t make num rows inside while looping i try allot of to make num rows in while looping to get number of rows for another tables $select_sub_cat = ...
0
votes
2answers
83 views

i can't make num rows inside while looping

i have tow tables first table : For products Second Table : For Categories i want to show in browser like this category1 (20) category2 (5) category3 (3) $select_sub_cat = mysql_query("SELECT * ...
0
votes
1answer
242 views

Select-Option num value vs SQL num_row

I have a big dilemma, I'm generating data from MySQL into a form so, the problem is that while the first row generated by SQL is 0 the select option in the form is interpreting the first value as 1. ...
1
vote
3answers
1k views

while ($row=mysql_fetch_array($query)) is not working

What i try to do is check the user's Id by verifying in a cookie (called "identification"). thats my code: if(!$noCookie) { $sql = "SELECT * FROM `". TABLE_PREFIX ."_logged` WHERE `logged_cookie` = ...