i can't acess my admin cp heres what comes up on the page:
Code:
// Begin vbProArcade // ###################### Start makeextrainputcode ####################### function makeextrainputcode ($title,$subtitle,$name,$value="",$htmlise=1,$size=35) { // makes code for an input box with a subtitle: first column contains $title and $subtitle // second column contains an input box of name, $name and value, $value. $value is "HTMLised" if ($htmlise) { $value=htmlspecialchars($value); } echo "\n$title
$subtitle\n
\n\n"; } // ###################### Start makeextrauploadcode ####################### function makeextrauploadcode ($title,$subtitle,$name,$maxfilesize=1000000) { // makes code for an input box: first column contains $title // second column contains an input box of name echo "\n$title
$subtitle\n
\n\n"; } // ###################### Start makeextrayesnocode ####################### function makeextrayesnocode ($title,$subtitle,$name,$value=1) { // Makes code for input buttons yes\no similar to makeinputcode echo "\n $title
$subtitle\n
Yes No " .iif($value==2 and $name=='customtitle'," User Set (no html)","") ."
\n"; } // ###################### Start makeextratextareacode ####################### function makeextratextareacode ($title,$subtitle,$name,$value="",$rows=4,$cols=40,$htmlise=1) { // similar to makeextrainputcode, only for a text area if ($htmlise) { $value=htmlspecialchars($value); } echo "\n$title
$subtitle\n
$value
\n\n"; } // ###################### Start dotableheader ####################### function dotableheader() { // begins a table with no form code at all global $tableadded; $tableadded = 1; echo "
\n"; echo "\n"; } // End vbProArcade
Warning: Cannot modify header information - headers already sent by (output started at /hsphere/local/home/hiphop/rapblock.com/forums/admin/adminfunctions.php:516) in /hsphere/local/home/hiphop/rapblock.com/forums/admin/functions.php on line 1752