Log in

View Full Version : Stupid admin functions - pissing me off....


Link14716
02-14-2004, 04:26 AM
And the fact that this is my first admin script isn't helping...
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[] = "&nbsp;<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....

Link14716
02-14-2004, 04:36 AM
And now I find out that print_form_header actually opens the ++++ing table... the one function that I wouldn't expect to do that... bah.