");
exit();
}
}
$user = $HTTP_POST_VARS['user'];
if ($user == null)
{
$user = $HTTP_GET_VARS['user'];
if ($user == null)
{
printError($scriptName, $startTime, "SellItemForm", "You must provide a user identifier!
");
exit();
}
}
printHTMLheader("RUBiS: Sell your item");
include("sellItemForm.html");
print("");
print("");
printHTMLfooter($scriptName, $startTime);
?>