MySQL Forums
Forum List  »  PHP

Re: Tool to Update .ibd files
Posted by: Peter Brawley
Date: July 04, 2019 11:22AM

Assigning a query string to a PHP variable does not send the query to the MySQL server; for that you need ...

$conn = mysqli_connect( ... );
$res = mysqli_query( $conn, $qry ) or exit( mysqli_error($conn );

Options: ReplyQuote


Subject
Written By
Posted
Re: Tool to Update .ibd files
July 04, 2019 11:22AM


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.