/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php //DB connection $query = "SELECT table1.*, table2.* FROM table1 LEFT JOIN table2 ON table1.column = table2.column"; ?>