
POG1
Members-
Posts
1,419 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by POG1
-
Re: question... A few tips. - Leave loads of white space at the top so when the person tries to view source it looks empty. - Make it hard for the thief, a 1 line website is tricky :-D - Use apache to show different images or to not allow the image directory to be viewed.
-
Re: For auction: Login page, just the .psd Very nice, i like your style.
-
Re: Project: GladiatorsArena (MCCODES) Whats your budget then?
-
Re: Project: GladiatorsArena (MCCODES) Why do you need 2 programmers and a mod maker? Won't a mod maker be a programmer?
-
Re: [REVIEW REQUEST] wrestling-wars.com good game, i signed up and got no email
-
Re: What are you listening to right now ? average
-
Re: New Game. Blow your mind's away. can some of us have an early sneap peak?
-
Re: [V1 && V2]Change Username Color Revised for you, loads of code was not needed and some markup errors case 'colorchange': $allowedColors = arrray("black","red","green","blue"); if(isset($_POST['color']) AND ctype_alpha($_POST['color']) AND in_array($_POST['color'],$allowedColors)) { echo '<h3>Change Name Color</h3> Below are a list of colors in which you can change your name to with an example of each.... <form action="preferences.php?action=colorchange" method="post"> Color: <select name="color" type="dropdown"> <option value="red">None</option> <option value="red">RED</option> <option value="blue">BLUE</option> <option value="green">GREEN</option> </select> <input type="submit" value="Change color" /> </form>'; } else { $sql = sprintf("UPDATE users SET username_color = '%s' WHERE userid = %u;",$_POST['color'],$userid); echo ($db->query($sql)) ? ' New color Saved!</p>' : ' There was an error saving your new color</p>'; } break; Also using the <font> tag isn't reccomended as it has depreciated. try something like.. echo '<span class="'.$ir['username_color'].'-username">'.$ir['username'].'</span>'; You can then add username-black, username-red, username-blue and username-green to your CSS.
-
[MCCODES V2] small mod change link name when file name has changed
POG1 replied to Uridium's topic in Free Modifications
Re: [MCCODES V2] small mod change link name when file name has changed Why not just a few lines of apache? -
Web 2.0 Style Login/Register/Forgot password + more,
POG1 replied to Mr walker's topic in Paid Modifications
Re: Web 2.0 Style Login/Register/Forgot password + more, From a design point it is very nice, from a CEO point it is not nice. -
Re: Unique Template $35 Good luck for selling but it dont look like $35 worth of work has gone into it though..
-
free banners for game // and otheres cheap prices
POG1 replied to bmw11's topic in Free Modifications
Re: free banners for game // and otheres cheap prices 1. Get a proper domain (and probably proper hosting) 2. Delete the installer file "Access denied for user 'I-SUCK-DICK'@'localhost'" -
Re: crons Haunted Dawg made the 1 and 5 minute equivalent. I turned it into 1 min, 5 min, 1 hour, and 1 day (with the ability to add as many as you like (basic maths)) It was me whom came up with the 5 minute :)
-
Re: Best Band Tbe best band ever would be RUN-DMC
-
Re: question about attack abs is clearly not needed..
-
Re: why isnt my text going to the LEFT? If you want to do it, try doing it properly. Add this clas to your CSS: .align-left{text-align:left;} Then in which ever element you want you can just use the class.... <div class="align-left">left!</div> <td class="align-left">left again!</td>
-
Re: Have some fun with your users ;)
-
[$120] Selling Vector Art (First come, first serve)!
POG1 replied to Joel's topic in Paid Modifications
Re: [$120] Selling Vector Art (First come, first serve)! Audi R8 cabby? nice :-D -
Re: Need help; Mass file editing Take a look here :) http://www.debian-administration.org/articles/298
-
[$120] Selling Vector Art (First come, first serve)!
POG1 replied to Joel's topic in Paid Modifications
Re: [$120] Selling Vector Art (First come, first serve)! skills! -
Re: Game Template [$10] It's ok, no worries. I have optimised it, it has gone from 8 images down to 5. I'll try getting it down to 3
-
Re: Game Template [$10] - That menu i coded myself and the image was taken from a free stock website (cant remember the name). - xHTML & CSS valid. - That image was just an example and I got it from another stock website (sxc.hu i think). - There is only 3 images (you are saying the rest is images)...
-
I got bored and decided to create a game template. Heres how it turned out. $10 is very cheap :mrgreen: Ionly will be selling a small amount of these!!
-
problem with my register.php i need help
POG1 replied to gideon prewett's topic in General Discussion
Re: problem with my register.php i need help If you look at your global_func file you will find a mail function 8-)