InterviewSolution
Saved Bookmarks
| 1. |
How Can We Find The Number Of Rows In A Result Set Using Php? |
|
Answer» Here is how can you find the NUMBER of rows in a RESULT set in PHP: $result = mysql_query($any_valid_sql, $database_link); Here is how can you find the number of rows in a result set in PHP: $result = mysql_query($any_valid_sql, $database_link); |
|