there is a parse error on line 19... and i can't find it.
<?php
$pagetitle="Buy Stock";
include("../include/head.php");
echo $harsss."<table border=\"0\" width=\"100%\">\n";
$stid = round($_GET["stock"]);
$st=mysql_query("SELECT FROM stocks WHERE stockid=".$stid);
if (@mysql_num_rows($st)<=0) {
echo "<tr><td>You must select a valid stock. Return to the <a href=\"stock.php\">Stock Exchange</a> to select a stock.</td></tr>\n</table>";
include("../include/foot.php");
exit;
}
$u=@mysql_fetch_array(mysql_query("SELECT FROM users WHERE username = '".$uname."'"));
$lvl=$u["level"];
if (15>$lvl) {
echo "<tr><td>You must be level 15 to use the Stock Exchange. Return to the <a href=\"index.php\">General Board List</a>.</td></tr>\n</table>";
include("../include/foot.php");
exit;
}
echo "<tr><td colspan="3" align="center"><span style="font-size:250%;"><b>Stock Name Here</b></span></td></tr>";
echo "\n</table>";
include("../include/foot.php");
?>