MySQL Forums
Forum List  »  PHP

Re: undefined function mysqli_result()
Posted by: Peter Brawley
Date: July 12, 2022 08:15AM

Did you not read about mysqli_result in the PHP manual?

https://www.php.net/manual/en/class.mysqli-result.php

You need something like ...

$res = mysqli_query( $con, "..." ) or exit( mysqli_error( $con ) ;

... ad then process the result as needed.

Options: ReplyQuote


Subject
Written By
Posted
Re: undefined function mysqli_result()
July 12, 2022 08:15AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.