Jump to content
MakeWebGames

Sim

Members
  • Posts

    2,392
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Sim

  1. Thanks George. Looks great. Putting it up now ;]
  2. Sim

    Wtf #3

    Never heard of a municipality.
  3. Sim

    Wtf #3

    My ID!!!!!!!
  4. Free oxygen? Free water? Free wi-fi internet at mcdonalds?
  5. Sim

    Wtf #3

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

    banner exchange?

    What banner exchange if any do you use? How does it compare to other exchange banner services you used?
  7. 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!!!
  8. 728x90 saying "PHP Engines" "A new web community..." Thank ya sir!! or ma'm
  9. My site is going to be a web development community offering downloads. Forums to help people who need it.
  10. Ive seen such stuff before like 10+years ago. they are interesting.
  11. or do you use a modified version? If you use a modified version, what mod do you use?
  12. No copy's sold yet.. Unsure about how many I plan on selling.
  13. price lowered to $200/copy by popular demand.
  14. I don't understand why you think I am not serious.
  15.   lol. I really laughed out load.
  16. 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]
  17. 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.
  18. 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 ;\
  19. I'm trying to count # of referals and get top 10 referrers ;]
  20. 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]
  21. Sim

    php encoders.

    Anything can be decoded, decrypted =0
  22. Sim

    php encoders.

    Recommend your favorite php encoders =)
  23. Sim

    Blog

    I'd also like to see total views of blog entry's as well as members who viewed the entry =0
  24. I'm not replacing all the html... My vote.php page's just updates the vote if they havn't allready voted and if they logged in. @Spudinski, jQuery is included.. I figured I wouldn't have to show that in the post. If I rename all classe's to vote1 vote2 vote3, I don't think id be able to use this $(".vote").click(function()   back to the problem at hand. If I replace success: function(html) { parent.html(html); }   with   success: function(html) { alert("boo"); }   The alert never shows, but it counts the vote.... ;\
  25. this is just the basic html of my code, my js file is included. my php file works.. i echo an alert and it says you voted. that works when visiting the php page by itself.   the problem is the page refreshes...   <div class='up'>[url=""]1 Good[/url]</div> <div class='down'>[url=""]2 Bad[/url]</div> <div class='up'>[url=""]1 Good[/url]</div> <div class='down'>[url=""]2 Bad[/url]</div>   my JS stuff $(document).ready(function () { $(".vote").click(function() { var id = $(this).attr("id"); var name = $(this).attr("name"); var dataString = 'id='+ id ; var parent = $(this); if(name=='up') { $.ajax( { type: "POST", url: "ajax/voteGood.php", data: dataString, cache: false, success: function(html) { parent.html(html); } }); } else { $.ajax( { type: "POST", url: "ajax/voteBad.php", data: dataString, cache: false, success: function(html) { parent.html(html); } }); } }) })
×
×
  • Create New...