And the fact that this is my first admin script isn't helping...
PHP Code:
print_table_header("uTT Store Actions", 6);
print_cells_row(array(' ' . "Name", "Cost", "Sold", "Quantity", "Active", "Controls"), 1, 'tcat');
foreach ($storeactions as $actionid => $action) {
$cell = array();
$cell[] = " <b><a href=\"uttstoreadmin.php?$session[sessionurl]do=edit&actionid=$actionid\">$action[name]</a></b>";
$cell[] = $action[cost];
$cell[] = $action[sold];
$cell[] = $action[quantity];
$cell[] = ($action[active] == "1" ? "Yes" : "No");
$cell[] = "<a href=\"uttstoreadmin.php?$session[sessionurl]do=edit&actionid=$actionid\">[edit]</a> | <a href=\"uttstoreadmin.php?$session[sessionurl]do=delete&actionid=$actionid\">[delete]</a>";
print_cells_row($cell);
}
print_table_footer(6, "<a href=\"uttstoreadmin.php?$session[sessionurl]do=add\">[add action]</a>");
Can anyone see anything wrong with that code? Becuase the output is awful....