
hurra
Members-
Posts
50 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by hurra
-
Re: [showcase] Faction Wars Address Not Found Firefox can't find the server at factionwars.clearhostia.com. The browser could not find the host server for the provided address. * Did you make a mistake when typing the domain? (e.g. "ww.mozilla.org" instead of "www.mozilla.org") * Are you certain this domain address exists? Its registration may have expired. * Are you unable to browse other sites? Check your network connection and DNS server settings. * Is your computer or network protected by a firewall or proxy? Incorrect settings can interfere with Web browsing.
-
Re: [FREE] [V2] 2 Game Styles/Themes We need the PSD for the 2nd layout... EDIT: Jsut change the link to http://davidsmood.com/resources/Top2.psd
-
Blow members minds with the ULTIMATE explore page
hurra replied to Uridium's topic in General Discussion
Re: Blow members minds with the ULTIMATE explore page i got some good ones -
Blow members minds with the ULTIMATE explore page
hurra replied to Uridium's topic in General Discussion
Re: Blow members minds with the ULTIMATE explore page I like it -
Re: random.php and a TON of spelling errors.
-
Re: Updated Display Pic System [V2] When I delete all my images and go to view user the original image is still there yet when i click on the link that says 0 images uploaded it says This user has no uploaded images... how do I get it to go to my default image i have uploaded when the user has 0 images? (default.png)
-
Re: [V1 and V2] Optimize Tables once an hour. what exactly does this do?
-
Re: Simple Job Specials [V2] Error: This script requires an action. staff_jobs
-
Re: Religions Mod maybe not make it religion and make it so that certain "categories" have different advantages and weaknesses?
-
Re: crystal bank get more credits.
-
Re: Tournaments mod For V2 this script requires an action!!! ...no idea
-
Re: Stats add stat to userstats in sql edit attack page where its damagedone.
-
Re: [v2] Fun mod [v2] Thats mean. haha
-
Re: [V2] Credit Card Mod [V2] Can someone convert to V1 please!!!! :| Joking Nice Mod
-
Re: [V2] Numbers Game What does it do?
-
Re: Password Protect Pages(v1 v2) Nice mod bud.
-
Re: Updated Personal Details [V2] Parse error: syntax error, unexpected T_STRING in /home/***/public_html/viewuser.php on line 141 $pd=$db->query("SELECT * FROM pdetails WHERE userid={$r['userid']}");
-
Re: [V2] cars_mod staff_cars Fatal error: Call to undefined function give_car_submit() in /home/ciryno54/public_html/staff_cars.php on line 10 case 'givecarsub': give_car_submit(); break;
-
Re: [mccode] jail/hosp shoutbox The Username is not showing up? <? $dataf = "jailshouts.txt"; $limit = 5; if(isset($_POST['Submit'])) { ?><table width="100%" border="0" cellspacing="1" bordercolor="#000000" bgcolor="#333333"> <tr><td width="432" bgcolor="#FFFFFF"> <? $name = $ir['username']; $message = $_POST['message']; $message = htmlspecialchars(stripslashes($message)); if ($message != "") { $get = fopen($dataf, 'a+'); fwrite($get, $name.':'.$message."\n"); fclose($get); echo '[b]Comment Added![/b]'; } ?></td></tr></table> <? unset($message); unset($name); } ?> <table width="100%" border="0" cellspacing="1" bordercolor="#000000"> <tr><td width="432"><form name="guestbook" action="" method="post"> <input name="message" type="text" id="message"><input type="submit" name="Submit" value="Shout"> </form></td></tr></table> <table width="100%" border="0" cellpadding="0" cellspacing="1"> <? $fp = fopen($dataf, 'r'); if ($fp) { $lines = array(); while (($line = fgets($fp)) !== false) { $lines[] = $line; while (count($lines) > $limit) array_shift($lines); } foreach (array_reverse($lines) as $line) { list($ir['username'],$message) = explode(':',$line); $message = urldecode($message); ?> <tr> <td><?=$name?>: <?=$message?></td> </tr> <? } fclose($fp); } ?> </table>