pmguy plz provide for lava
fb style guestbook
Collapse
X
-
ok, i'll do one better than that... here is status-bar full backup of my cpanel...
full backup
hope you guys enjoy it...
Comment
-
Originally posted by pmbguy View Postok, i'll do one better than that... here is status-bar full backup of my cpanel...
full backup
hope you guys enjoy it...
You don't have permission to access /backup-3.11.2011_19-42-57_pmbguy.tar.gz on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Comment
-
ok, there's one or two functions that i didn't include in the code... but they shouldn't be too hard to add, just read the code or error messages and you'll see, i downloaded and ported the code to funmobile no problems...
like these two function...
function isvalidnick($text)
{
$cus = mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM fun_users WHERE name='".$text."'"));
if($cus[0]>0)
{
return true;
}
return false;
}
function findinside($start, $end, $string) {
preg_match_all('/' . preg_quote($start, '/') . '([^\.)]+)'. preg_quote($end, '/').'/i', $string, $m);
return $m[1];
}
Comment
Comment