Jump to content
MakeWebGames

Sim

Members
  • Posts

    2,392
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Sim

  1. A chat server would show the basic's of setting up a client/server which I was having trouble doing years ago. A basic chat client/server also is the first step in creating multi player games.
  2. How about a simple multi user server/client demo? =]
  3. Sim

    Free bb-code Editor?

    CKEditor is way to much. the 2nd one is to simple. #3 is probally going to be my choice. Thanks Djkanna!!
  4. I am reviving my first game project I ever started from scratch years ago for phpBB2. It was originally called phpBB Card Duel. Now it will be called it php Card Duel. I'll post some screen shots once I get things converted. Php Card Duel is a basic card game where you battle it out on a card field with different card types. ;]
  5. Anyone know of a free bb-code editor your allowed to include in a commercial script? I just don't feel like coding one ;)
  6. Thanks George. Looks great. Putting it up now ;]
  7. Sim

    Wtf #3

    Never heard of a municipality.
  8. Sim

    Wtf #3

    My ID!!!!!!!
  9. Free oxygen? Free water? Free wi-fi internet at mcdonalds?
  10. Sim

    Wtf #3

    I do have proof of residence. I just dont want to show them my 15,000$ credit card bill. lols!!!!
  11. Sim

    banner exchange?

    What banner exchange if any do you use? How does it compare to other exchange banner services you used?
  12. Sim

    Wtf #3

    Friday I tried to get a bank account. I took my ID, social security card, & Birth Certificate. The bank people told me that I needed 2 valid form's of ID. It was a law from the government. My ID counts as a ID. So here's the catch. I can get my ID from the government with no social security card or birth certificate, but I can't get a bank account with all 3!!!
  13. 728x90 saying "PHP Engines" "A new web community..." Thank ya sir!! or ma'm
  14. My site is going to be a web development community offering downloads. Forums to help people who need it.
  15. Ive seen such stuff before like 10+years ago. they are interesting.
  16. or do you use a modified version? If you use a modified version, what mod do you use?
  17. No copy's sold yet.. Unsure about how many I plan on selling.
  18. price lowered to $200/copy by popular demand.
  19. I don't understand why you think I am not serious.
  20.   lol. I really laughed out load.
  21. How do I workaround this? says error is line 42 here is the begining of my file. The rest is just functions. So i'll show the function that is causing it. [syntax=php] <? //session stuff session_start(); //include required files. include "../config.php"; include "../phpMySQL.php"; include "../includes/constants.php"; //initiate class. $db = new phpMySQL($dbhost, $dbuser, $dbpass, $dbname); $db->connect(); [/syntax] line 42 is $query = $db->query [syntax=php]//attempt to login user function userLogin() { //check if username pass string test if(checkUser() == true && checkPass() == true) { //query to check if user name or email in use $query = $db->query("SELECT userID, userActCode, userRank, COUNT(userID) as counts FROM " . USER_TABLE . "' WHERE userHandle='" . $db->escape($_POST['textUser']) . "' OR userPass='" . $db->escape($_POST['textPass']) . "'"); $rec = $db->fetch_array($query); //user name and password match if($rec['counts'] == 1) { //user account activated if($rec['userActCode'] == 0) { $_SESSION['userID'] = $rec['userID']; $_SESSION['userRank'] = $rec['userRank']; //update last activitity $data = array("userLastActive" => time()); $db->update(USER_TABLE, $data, "userID='" . $rec['userID'] . "'"); die('Login Successfull, Redirecting...<script type="text/javascript">window.location = "' . $pather . '"</script>'); } else { //display error die("You must first activate your account..."); } } else { //display error die("Incorrect User name and password combination..."); } } else { //display error die($_SESSION['msg']); } }[/syntax]
  22. I am about to launch a new web community and I am need of some content. The community is not geared towards "Games" in general but to web development. I may hire more then one person as there is a lot of content to add. Please specify what your rate is and what position you would like to fill.   A) I need someone to upload web templates (stand-a-lone, flash, wordpress, other CMSs) B) I need someone to upload web scripts. php/asp C) I need someone to set up my directory by making categories and sub categories. For a & b. I would like about 10 new submissions for each category. Fields are: title, description, keywords. Must also upload image and file. no external linking of files. Everything submitted must not be illegal to redistribute. and should be of somewhat quality. That is all.
  23. If you want the game to list for 20yrs. I would probally go with something through web-browser. Technology's upgrading so fast and thats like the only thing that hasn't changed yet that much. HTML is still HTML like 12yrs ago. Back then there was VB3. vb3 no good now and anything made in that damn sure wouldn't be working now ;\
  24. I'm trying to count # of referals and get top 10 referrers ;]
  25. I followed same concept as my other query's but this one doesn't work. Not sure why. I know the difference has to be because its only 1 table instead of 2. but i don't know. Working query: [mysql]SELECT votes.voteUserID, COUNT(votes.voteUserID) as countz, user.userID, user.userHandle FROM user, votes WHERE user.userID=votes.voteUserID AND votes.voteDate>='$starttime' AND votes.voteDate<='$endtime' GROUP BY votes.voteUserID ORDER BY countz DESC LIMIT $recs[/mysql] none working query.. it doesn't error, just returns no results. ;] [mysql]SELECT userID, userRefID, userHandle,COUNT(userRefID) as countz FROM user WHERE userID=userRefID AND userRefDate>='1296540000' AND userRefDate<='1298959200' AND userActCode='0' GROUP BY userRefID ORDER BY countz DESC LIMIT 10[/mysql]
×
×
  • Create New...