<?php
session_start();
$connectgames = mysql_connect("localhost","root","");
mysql_select_db("consoleentertainmen_518181_db1") or die ('Could not connect to database');
$findgames = mysql_query("SELECT product_MerchantProductID, product_Name, product_Description, product_OnWeb FROM tbl_products INNER JOIN tbl_skus ON tbl_products.product_MerchantProductID = tbl_skus.SKU_MerchSKUID");
$row = mysql_fetch_assoc($findgames);
while ($row = mysql_fetch_array($findgames, mysql_assoc)) {
echo '<tr><td>' . $row['product_MerchantProductID'] . '</td><td>' . $row['product_Name'] . '</td></tr>
';
}
?>
Basically I need the sku_price linked into a table with the other columns from the other table, can anyone offer any suggestions