How can we find the number of rows in a result set using
PHP?
Answers were Sorted based on User's Feedback
Answer / sreenia
a small correction to above answer, mysql_num_rows($rs)
| Is This Answer Correct ? | 30 Yes | 0 No |
Answer / shivu
$no_of_rows=mysql_num_rows($result_set_name);
echo $no_of_rows;
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / rakesh kumar nautiyal
mysql_num_row() can return the number of rows in php
| Is This Answer Correct ? | 10 Yes | 8 No |
Answer / ditty k.m
mysql_num_rows(resultset);
this function will return the number rows after executing
a query.
| Is This Answer Correct ? | 2 Yes | 2 No |
What is the use of print_r function in php?
Is php strongly typed?
What is polymorphism?
What is a php form?
Explain the differences between get and post methods?
What is query string php?
How can you encrypt password using php?
How to join multiple strings stored in an array into a single string?
In how many ways we can retrieve the date in the result set of mysql using PHP?
Is python better than php?
How are variables declared in php?
How to submit form without a submit button.