Jump to content
MakeWebGames

tozza1000

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by tozza1000

  1. i looked for a webhost for ages and randomly stumbled across a website called smart host. Yes maybe its not the most aesthetically pleasing and so on but its dirt cheap. http://thesmarthost.duoservers.com
  2. I know this is an old thread but wouldnt it be better and simpler to use switch($_GET['action']) { case 'new': cmd_new(); break; case 'edit': cmd_edit(); break; case 'remove': cmd_remove(); break; default: print "Error: This script requires an action."; break; }   now it will return an error message if noaction is specified and uses ?action rather than ?cmd so it follows the style of the rest of the staff options. ;)
  3. i would be able to go to $100 if i could get one for that?
  4. I would like to request someone to make a template for me and i will pay. below are what i would like it to have; login, register and in game full coded psds. here is the style of my game: criminal based. Name is The Criminal dark or light. my budget is about $50 maybe a bit more if needed. before you say im asking for allot for the price consider this: i do not expect amazing artwork or mascots. I would like the same detail as http://www.mafianation.net/login.php for a good designer i do not think this will take too long. please post below if your up to it and we can discuss it further.
  5. the sql query is wrong. use this one [mysql]ALTER TABLE gangs ADD gangREQ text NOT NULL;[/mysql];)
  6. http://hosting24.com is very good and as your a new customer you can use the coupon code ENRICH9 and get $2 off for each month. you get unlimited everything for $5 a month using the promo or $7 not using it. Very Reliable and professional they are great!
  7. ill take some webhosting,, does it cost?
  8. CRap LAYOUT the prervious reply was yes fixed but horrible because you can only send a message no name or email. use this to enable users to send you there email and name plus there message.   <?php include 'globals.php'; /* -- Mobz Productions -- -- A Product of Mobz Productions -- -- For contacting game -- -- Created by M0B2 -- -- Contact.php -- --Fixed by Torin (tozza1000)-- */ print "Staff Contact form: "; if($_POST['mes']) { $to="YOUR EMAIL"; $subj = "YOUR GAME NAME Form"; $mess =$_POST['mes']; $from = $_POST['email']; $headers ="From: $from"; mail($to,$subj,$mess,$headers); } print "Your message has been sent to $to You will get a reply as soon as posible. <a href='index.php>Back to game...</a>"; print "You are contacting ".$set['game_name']." Via email. "; echo' <form method="post" action="contact.php"> Name: <input name="from" type="text"> Email: <input name="email" type="text"> Message: <textarea name="mes" rows="15" cols="40"></textarea> <input type="submit" value="Send!"></form>'; $h->endpage(); ?>
×
×
  • Create New...