-
Posts
1,660 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Events
Everything posted by Jordan Palmer
-
While this is a simple task for most, It can be quite daunting for the new devs around, I am glad you've shared it with us.. After all the main thing for web developing is that you find your own way :) Very good post and informative tutorial
-
I don't know myself, but try 3D content into your website
-
Sounds good dayo. I wish you all the luck, I can talk to a few friends about possibly signing up for BETA. Will get back to you
-
All your missing in the form action for the login by the looks off it, As for register, I would do something like this if(isset($_POST['reg_submit'])) { then do al checks, then do the inserts. I know this is fade but I can help more via MSN if need be :)
-
I reckon it look okay, Dark layouts are usually the better one's, I can see room for improvement but heh, it's small things Good job overall :)
-
I am quite happy to look through the finishing production for any security vulnerabilities
-
Looks very nice danny. Very good price too :)
-
Ahhh, Sorry forgot the word so used quality so it made kinda sense lol
-
I have seen examples off the low quality image's and I have too say, they're pretty amazing. I would love too see this publicly released. I will be purchasing this service. And recommend to friends
-
Gosh this is something I watch all the time, It's main guys are two brothers They live in a sruffy flat in peckham and drive a 3wheeld yellow van All I'll say is This time next year we'll be a millionaire.. If you watch it you'll understand :P Only fools and horses
-
Wow, What can I say It's an stupidly funny film/show It consists off two main people Frank Spencer; Very stupid guy, If your looking for a laugh he's your man Betty Spencer; Franks wife, She's quite clever compared to frank, yet is still married to the f00 ;p I recommend this for EVERYONE Have a read : Some Mothers Do 'Ave' Em
-
I've never quoted numbers in queries nor would I suggest doing it, Quoting table name's is good EXAMPLE: <?php mysql_query("SELECT `information` FROM `table_name` WHERE `account_cash` = 2500"); mysql_query("UPDATE `table_name` SET `money` + 2500"); ?>
-
I started web developing quite a while ago, It all started off by me and some friends starting too playing a text based game, not torn or anything popular but it was popular for us, I got banned from the game, I then got in talks to bring up the network 'Dream Chasers' We started by hiring programmers to do the work for us, then I started studying PHP and got my head around the basics, After a while I met Magictallguy who started helping me here n there, After a few months I started getting better and better. By about 6month's on I was confident with php & mysql, So me and a friend started developing our own engine, however after around 5month's we both had alot off exam's and was both finding it hard too find the time too develop for this engine, I then got a offer working with a team off highly skilled web developers, I myself was a baby compared too what they could do, Later that month I got moved onto working on a mccodes project. I actually got better & better and then decided i'd make my own game with mccodes, and here I am now. lol Thats how I got into web dev'ng and most off all how I ended working with mccodes.
-
Well I would personally say the same as Joshua, $3-$5 being the maximum it'd sell for as it's not too advanced and it's probably cron timed, Which make's it even less, I wouldn't even bother selling as there's already a free version around a few simple edit's and it's this replica. Goodluck either way though
-
Hello Sexy ;'D @Faz; What kind off guy would I be if I couldn't remember the one guy who always told me straight no matter how much shit i gave him aha, How life man? xD
-
Second C# tutorial => a simple breakout game
Jordan Palmer replied to a_bertrand's topic in Other Programming
i've so gotta get into this.. -
aha, looks like that too dominion :L! MCCodes is really dead nowdays huh
-
Hey :') How's everyone doing? Been a while since i've seen a few people, Carn't really be bothered keeping up with all the shitty/crappy posts so thought I'd just ask all who's active, Whats new? :D Who's still actually developing for mccodes? Drop us a shout if your an oldie :')...been a long time since i've spoken too a few faces
-
Look's pretty decent. There is alot off voting site's around, This has a slight uniqueness though, Very good :')
-
Have a read here
-
I did make this a while back but didn't post it, I'll see if I can get too my old system. It's pretty easy though, Tried searching google?
-
Free coded login, can easily become register, TOS, etc.
Jordan Palmer replied to BoGFx's topic in Free Modifications
I had a few mins and I thought this was a real nice piece off work. Here is a updated version TESTED ON VERSION 2 ONLY <?php require_once(DIRNAME(__FILE__) . '/config.php'); global $_CONFIG; define("MONO_ON", 1); require_once (DIRNAME(__FILE__) . '/class/class_db_'.$_CONFIG['driver'].'.php'); $db = new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $c = $db->connection_id; $set = array(); $SelectSettings = $db->query("SELECT `conf_name`, `conf_value` FROM `settings`"); while($r = $db->fetch_row($SelectSettings)) { $set[$r['conf_name']] = $r['conf_value']; } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="description" content="Desc Here" /> <meta name="keywords" content="keyword" /> <meta name="author" content="Author" /> <meta name="copyright" content="2010 Author" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title><?php echo $set['game_name']; ?></title> <style type="text/css"> A:link {text-decoration: none; color:#FFF; font-family: Arial, Helvetica, sans-serif;} A:visited {text-decoration: none; color:#FFF; font-family: Arial, Helvetica, sans-serif;} A:active {text-decoration: none; color:#FFF; font-family: Arial, Helvetica, sans-serif;} A:hover {text-decoration: none; color:#FFF; font-family: Arial, Helvetica, sans-serif;} img { border: none; } body { font-family: Verdana, Geneva, sans-serif; font-variant: small-caps; color: #FFF; background-color: #000; background-image: url(images/mwglayout/bg.png); margin: 0px; padding: 0px; margin-left: auto; margin-right: auto; text-align:left; } #container { background-color: #000; background-image: url(images/bg.png); width: 800px; margin-left: auto; margin-right: auto; text-align:left; } #main { background-image: url(images/bgmain.png); width: 750px; margin-left: auto; margin-right: auto; text-align:left; } #smain { background-image: url(images/bgmain.png); width: 730px; margin-left: auto; margin-right: auto; text-align:left; } #header { background-image: url(images/bglogo.png); width: 730px; margin-left: auto; margin-right: auto; margin-bottom: 14px; padding-top: 10px; text-align:left; padding-left: 14px; } #menu { background-image: url(images/bglogo.png); width: 730px; margin-left: auto; margin-right: auto; margin-bottom: 14px; padding-top: 10px; text-align:center; padding-left: 14px; } #content { background-image: url(images/bglogo.png); width: 730px; margin-left: auto; margin-right: auto; margin-bottom: 14px; padding-top: 14px; text-align:left; padding-left: 14px; } td.foot { text-align: left; font-size: 11px; } </style> </head> <body> <div id="container"> <div id="main"> <div id="header"> <table width="730"> <tr> <td width="400px">[img=/images/logo.png]</td> <td width="330px"> <form action="authenticate.php" method="post" name="login" onsubmit="return saveme();"> Username:<input type="text" align="right" name="username" size=35/> Password:<input type="password" align="right" name="password" size=35/> <input type="submit" align="right" value="Login" /> Need an account? [url="/register.php"] Sign up Today![/url] </form> </td> </tr> </table> </div> <div id="smain" width="730" height="14"> </div> <div id="menu"> <table width="730"> <tr width="730"> [url="#>Home</a>"]Register[/url]   |   [url="#>Screenshots</a>"]Contact[/url]   |   <a href=#>Other</a> </tr> </table> </div> <div id="content"> <table width="730"> <tr width="730"><?php echo $set['game_description']; ?> </tr> </table> </div> <div id="menu"> <table width="730"> <tr width="730"> © <?php echo ' '.date('Y').' '.$_SERVER['SERVER_NAME'].''; ?> </tr> </table> </div> <div id="main"> </table> </div> </div> </div> </body> </html> -
Add a row to gangs Code the function too update the row use <img> tag to display.
-
Show us the code? Also, Selling houses isn't such a good idea, It can very much cause big inflation so I would say atm, you're game is better....[/opinion]
-
You would need to talk to the official layout owners about the layout Buy a valid lic and any file which is encoded, simply replace :)