Jump to content
MakeWebGames

Zero-Affect

Members
  • Posts

    3,713
  • Joined

  • Last visited

    Never

Everything posted by Zero-Affect

  1. good point Djkanna.   Always wondered how you spell that but sadly i believe it's layman terms mate (i did once believe it was 'lamens' from lame + men) The sheep are among us run for your life!
  2. Trial and error is a good way ( i most of the time use trial and error but cross reference functions with php.net). I also disagree, i taught myself PHP from looking at code and visiting php.net 200+ times a day, there is always something new with php and that's mostly what attracts me to it. Good luck with teaching yourself PHP but maybe try some basic languages before hand (HTML).
  3. Sounds interesting Dayo, May i ask what type of integration into FB - i myself use a simple html file with iframe content (i know silly idea but wondering what you do).
  4. :) Dave your version won't print as image on MWG or anywhere with a proper bbpraser really.
  5. Zeggy does have a point
  6. im just curious to why he used varchar...
  7. why varchar?
  8. It's a little small...
  9. Ah i just noticed i had clicked preview and not posted... lol I was going to ask why this is downloadable via a outside source? just pastebin or shove it in several posts.
  10. no offence or anything but why a outside source for the download actually why even a download?
  11. ah ty rpmb
  12. ill be a vampire and own the rest :D
  13. screenshots FTW
  14. im so sure this has been done exactly like this, could find the mod but i think it was only sold for about 10 bucks, how much you planning on charging?
  15. item_add auto merges...
  16. itemuse.php replace: $_GET['ID'] = abs((int) $_GET['ID']);   with: $_GET['ID'] = ( isset($_GET['ID']) AND ctype_digit($_GET['ID']) ) ? $_GET['ID'] : '' ; $_POST['id'] = ( isset($_POST['id']) AND ctype_digit($_POST['id']) ) ? $_POST['id'] : '' ; if ( !empty($_POST['id']) ) { $itm = $db->fetch_row($db->query("SELECT `itmname` FROM `items` WHERE `itmid`={$_POST['ID']}")); echo ' Do you want to continue and use [b]'.$itm.'[/b]? <form action="" method="post"> <table width="75%" border="0" cellpadding="1" cellspacing="1" align="center"> <tr> <td><form action="?ID='.$_GET['ID'].'" method="post"><input type="submit" value="continue"></form></td> </tr> </table> > [url="inventory.php"]Go Back[/url] '; } else { -- find: $h->endpage();   replace with: } $h->endpage();   NOTE: coded from scratch and untested
  17. MTG's function looks interest, oh the mod.. lol looks good mate.
  18. do the drugs get weaker as time goes by? like the old mod used to this looks so like it.
  19. LOL @ AA dude AA is Alcohol anonymous (i smell something it smells like bull...) the only sex addiction meetiing you went to was a chat room on yahoo where all the people where blokes...
  20. google => "my webcamXP server!" find a ip link for a example.
  21. JAMESOMIGHTY who implemented the code maybe they can help.
  22. Ah Dayo, Well done mate and very informative. I always seem to mess up calculations with timestamp lol
  23. forgetting something Bug? find: if(!valid_email($_POST['email'])) { die("Sorry, the email is invalid. >[url='register.php']Back[/url]"); } Add below: // Change the values in array to the values of the drop down in the form if( !in_array($_POST['race'], array('raceone', 'racetwo', 'racethree')) ) { echo ' Please select a predefined race. >[url="register.php"]Back[/url] '; } NOTE: may wanna look at gender also... Hey Strats nice to see you on MWG again :)
  24. You do have a point, give me your email and ill block you immediately to prevent any future annoyances X(
×
×
  • Create New...