MySQL Forums
Forum List  »  PHP

Re: INNER JOIN MySQL
Posted by: Peter Brawley
Date: July 23, 2018 12:50PM

Always trap errors in database function calls, mimimally ...

$result = mysqli_query($connect,$sql) or exit( mysqli_error( $connect );

> stock_table3.BILL_NO, ...

Caps in db identifiers are a bad idea. Define them and refer to them in lower case.

Options: ReplyQuote


Subject
Written By
Posted
July 23, 2018 02:47AM
Re: INNER JOIN MySQL
July 23, 2018 12:50PM
July 25, 2018 12:44AM
July 25, 2018 07:46AM


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.