⟩ Tell us how can we find the number of rows in a result set using PHP?
☛ $result = mysql_query($sql, $db_link);
☛ $num_rows = mysql_num_rows($result);
☛ echo "$num_rows rows found";
☛ $result = mysql_query($sql, $db_link);
☛ $num_rows = mysql_num_rows($result);
☛ echo "$num_rows rows found";
What is difference between require_once(), require(), include()?
Tell me how to create a session? How to set a value in session? How to Remove data from a session?
Tell me how to find the length of a string?
How send email in php?
Tell me how to find the position of the first occurrence of a substring in a string?
Do you know how can PHP and HTML interact?
Do you know how can we check the value of a given variable is a number?
What is the most convenient hashing method to be used to hash passwords?
Tell me what is the definition of a session?
Tell us what does $_COOKIE means?