Jump to content
MakeWebGames

Sim

Members
  • Posts

    2,392
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Sim

  1. Sim

    Wtf #2

    I know that. Everyone is blocked for someone reason. I try to message someone and it says "You can not message this person c ause they are blocked" I go to Options -> security and my entire contact list is under blocked. Theres 600 contacts to unblock one at a time.. WTF
  2. Sim

    Wtf #2

    My entire contact list on MSN is marked as BLOCKED. How I unblock my entire contact list?
  3. I would go with Djkanna's method since your allready pulling all the data from the DB. If you was not pulling all the data, i would look into the SUM() function. ;]
  4. I guess there is none now. That just seems awkward.
  5. Not worth the time. URL re-writing is used for mostly for search engine's ;] Since google will not be crawling your member restricted content, there really is no reason to mod-rewrite url's
  6. Your or mine?
  7. I would like to see latest Blog's on the "Portal". I would like to see latest Blog Entry associated with user posts somewhere. I know not many people make blog's, but I want to start blogging and I want maximum exposure to my blog.
  8. Sim

    AJAX Help

    Was that yes to me or him?
  9. Sim

    AJAX Help

    From what I have read, it would be best to use txt file or some other sort of file rather then a sql DB for something like this. I may be wrong though.
  10. You will have to be typing the descriptions somewhere as she Lil said they had to be "created"
  11. The person would still have to enter Description's, but it sure would save a lot of time. Hey Lilith. I am interested in this job. I want the job because I need money of course. I can type at over 90wpm and I am a experienced php/mySQL programmer. I also have never used any "admin access" given to me in ways I should not.
  12. I thought you just paid someone $520 for him/her to create you a mod that you never received?
  13. I find it funny.
  14. how about some information?
  15. I think something like a Online Teaching Class. After x people sign up. They are given a lesson x ammount of days with a small assignment to show what they have learned. Nothing super HARD, just a Crash Course. I wouldn't mind helping. Also, there shouldn't be no grading as this would discourage people. A simple pass/fail system would work.
  16. screen shots!!
  17. I am about to start my next new project. As you will be a partner in it. I have not came up with a complete design yet for the game itself as I would like this to be more of a team effort then a solo effort, but I want to follow my concept. Game is strickly Tick-Based. Game is mostly multiplayer with team battles as well as 1v1 battles Game has lobby system where players find others to battle or join there team. Game has multiple "World's" (maps) for battle's. Game "World's" has multiple "Towns" (each player/team starts in a Town) Game "Towns" allow multiple "Actions" Game "Actions" are like "Committing Crimes", "Recruiting Member's" Each Action takes x amount of time to complete. Multiple "Actions" can happen at once. Game Objective is for your team or yourself is to "Control World". I would also like for an average game to only take between 5-15 minute's. What I need? Maybe a few programmer's. Some Artists are needed. Game Designer, Tester and Game Master. Contact me via msn @ [email protected]
  18. Sim

    WTF

    Theres a new Zodiak sign. so nows there 13. I am no longer a gemini. I'm something different now.
  19. I have never seen a template cost 4000$
  20. Sim

    jQuery helps ;[

    Thanks for the great effort Djkanna, but I need to use jQuery. I will displaying a lot more then just a form. There will a lot of other things being displayed and more then one other form being displayed too.
  21. Sim

    jQuery helps ;[

    Yes, but does it change the actual inside of the form? I don't need same form returned.
  22. I don't want to use iFrame. Here is what I came up with, but its not working.. It displays nothing. I place this code on external SITE to try to call my PHP file. <script type="text/javascript" src="http://somedomain.com/pet.php?petID=5"></script>   my pet.php page just calls the class in pet.class.php on "somedomain.com" so I'll just post the pet.class.php file < ?php class pet { //construct function __construct() { $this->petDisplay(); } //show pet function petView($petData) { //vars to replace in looper file $replacers = array("{NAME}", "{IMG}", "{LVL}", "{LID}"); //open template file $first_sec = file_get_contents("template/pet.htm"); $template = str_replace($replacers, $petData, $first_sec); Header("content-type: application/x-javascript"); echo $template; } //get all user pets function petDisplay() { require_once('mysql.class.php'); //vars $mysql = new mysql(); $petID = $_GET['petID']; $petUserID = $_GET['petUserID']; //get pet $mysql->query("SELECT pets.petID, pets.petName, pets.petFileType, userpets.upPetID, userpets.upHits FROM userpets, pets WHERE userpets.upID='$petID' AND pets.petID=userpets.upPetID"); $data = mysql_fetch_assoc($mysql->result); $hits = $data['upHits'] + 1; $petsID = $data['upPetID']; //get potential new pet $mysql->query("SELECT petID, petReq, petName, petFileType FROM pets WHERE petParentID='$petsID'"); $dataNew = mysql_fetch_assoc($mysql->result); //LEVEL UP!! if($hits >= $dataNew['petReq'] && $dataNew['petReq'] != 0) { $newPetID = $dataNew['petID']; //update user pet sql data $mysql->unreturnquery("UPDATE userpets SET upPetID='$newPetID', upHits='1' WHERE upID='$petID'"); //send email about LEVEL UP!! $msg = "Your pet has advanced to " . $dataNew['petName'] . ". View your new pet at somedomain.com/mypets.php"; $header = "From: SECRET SITE <[email protected]>\n\r"; mail($email, "Congradulations on Pet Advance", $msg, $header); //set data $pet = array($dataNew['petName'], "pets/" . $dataNew['petName'] . '.' . $dataNew['petFileType'], 1); } else { $mysql->unreturnquery("UPDATE userpets SET upHits='$hits' WHERE upID='$petID'"); //set data $pet = array($data['petName'], "pets/" . $data['petName'] . '.' . $data['petFileType'], $hits); } $this->petView($pet); } } ?>   Any ideas. If I call pet.php by itself. It will output my template which is just an image. ;]
  23. Sim

    jQuery helps ;[

    No errors, but its flawed. View your source. It removes all HTML but the form itself.
  24. Sim

    jQuery helps ;[

    hmm. http:// is required. People are calling my php file from there webserver.
×
×
  • Create New...