Name: Anonymous 2012-01-07 12:24
Im messing around with imageboard software and textboards. I was wondering if there is anyplace i can get an actually working copy of shiichan?
// making a new account
if ($mylevel < 9000) fancydie("You don't have permission for that.");
if (!$_POST[password]) fancydie("Blank password == a no-no.");
if (!is_numeric($_POST[level])) fancydie("$_POST[level] isn't a number.");
if ($_POST[level] > 9999) fancydie("9999 is the highest it goes. Dragonball Z power levels are not allowed.");
if ($mylevel < 9999 && $_POST[level] > 9000) fancydie("No, your elite account-making abilities will not let you make yourself the sysop.");
if ($_POST[password] != $_POST[pass2]) fancydie("Passwords didn't match");