HTML Php

function DisplayThreads()
{
$result=mysql_query("select min(datestamp),topic,thread from forum group
by thread order by topic") or die ("Can't Preform query
1");
echo"\n";
}
Function SetHeader()
{
echo"


WebThreads powered by PHP3


\"#000080\" bgcolor=\"#D1C7B8\" text=\"#000000\" alink=\"#FF0000\">
";
}
switch($command)
{
case 1 : SetHeader();
echo "


\"admin.run\">
";
echo"

Choose a thread to delete

";
DisplayThreads();
echo "
\">

";
break;
case 2 : SetHeader();
$ThreadNum=count($threads);
for($i=0 ; $i < $ThreadNum ; $i++)
echo"Deleting thread number $threads[$i]
\n";
}
?>