MySQL Forums
Forum List  »  PHP

Re: php Mysql use join
Posted by: Peter Brawley
Date: June 29, 2014 02:19AM

Use the mysqli API; the mysql API is deprecated and will go away.

Poll for errors eg ...

$conn = mysqli_connect(...) or exit( mysqli_connect_error() );
...
$result = mysqli_query($conn,$sqlstr) or exit( mysqli_error($conn) );

Options: ReplyQuote


Subject
Written By
Posted
June 28, 2014 09:37PM
Re: php Mysql use join
June 29, 2014 02:19AM
July 08, 2014 06:00PM


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.