to send a query to mysql from php, we use the query method of the connection object. this returns a mysqli result that we place in the result object. we then loop through each row in the mysqli result by calling the data seek method of the result object.



Answer :

Other Questions