Y know there's not really much you can do with a dj panel design without lacking functionality in some way / making it too complex, but i'm always open to ideas.
Printable View
Looks very good on VNC dan =D
Link dont work
You have one bad ISP then, DNS servers should have updated by now, or just use www.opendns.org
Link works for me. Live preview is nice aswell.
Looks like a pretty good design, but remember, it's more about what it can do and the security.
I'm sure it'll turn out well!
How's that for ya.PHP Code:function clean_string( $string )
{
$string = htmlspecialchars( $string, ENT_QUOTES );
if( get_magic_quotes_gpc() )
{
$string = stripslashes( $string );
}
$string = mysql_real_escape_string( $string );
$string = preg_replace( "/(include|require|require_once|include_once|exec|wscript\.shell)/i", "", $string );
$words = array( "/javascript/i",
"/onclick/i",
"/onload/i",
"/onsubmit/i",
"/onkeydown/i",
"/onmouseup/i",
"/onmousedown/i",
"/onkeyup/i",
"/onchange/i",
"/document/i",
"/script/i"
);
// 097 = a, 111 = o, 115 = s, 100 = d - \o/
$replace = array( "javascript",
"onclick",
"onload",
"onsubmit",
"onkeydown",
"onmouseup",
"onmousedown",
"onkeyup",
"onchange",
"document",
"script"
);
$string = preg_replace( $words, $replace, $string );
return $string;
}