Pracuję przy recent.phtml które pokazuje ostatnie zamówienia w dashboardzie konta. Chcę tylko pobrać customer_id dla aktualnie zalogowanego użytkownika. Poniżej mój kod,
Kod: Zaznacz cały
$link = mysql_connect('localhost', 'user', 'pass') or die("Could not connect");
mysql_select_db('magento', $link) or die("Could not select magento");
$result=mysql_query("select * from customer_entity where customer_id = 1") or die("No DB Connection! Array compilation failed! ".mysql_error());
while ($qry = mysql_fetch_array($result)) {
echo "<a href=\"".$this->getUrl('')."property_info.php?CID=".$qry['customer_id']."\">Click here</a> to enter your property information.<br><br>";
}