Jump to content
MakeWebGames

sniko

Members
  • Posts

    2,210
  • Joined

  • Last visited

  • Days Won

    47

Everything posted by sniko

  1. ff sun or rain
  2. fifa paper or card
  3. Bike Surround Sound or Not Surround Sound?
  4. Wireless Kebab or Pizza?
  5. Wireless Kebab or Pizza?
  6. Ah, if you need any help PM me or MSN or Email. PM MSN: [email protected] Email: [email protected] -sniko
  7. Game of life. * I meant coke - Damn my typing lol Mouse or Touchpad
  8. You could alternatively do something like * Ignore the <br />'s in the code if they appear.   Then do something like $sensei = explode(",", $ir['sensei']); $count = count($sensei); echo "<strong>You have ". $count ." students</strong>"; while($count > 0) { $count--; $r = mysql_fetch_array( mysql_query("SELECT `username` FROM `users` WHERE `userid`=". $sensei[$count] )); echo "<a href='viewuser.php?ID=". $sensei[$count] ."'>". $r['username'] ."</a>"; }   And then insert the records something like function senseiUpdate($user) { global $userid, $ir; //Check if they already have 3 students $countSensei = count( explode(",", $ir['sensei']) ); if($countSensei == 3) { //return TRUE; exit; } /* At this moment in time, the `sensei` value has nothing in it, but we need to check it otherwise, we may have a value of " , 4, " */ $msg = "Sucessfully added as a student!"; return $msg; $checkSensei = substr($ir['sensei'], 1, 1); //Get first char in the row. if(!is_numeric($checkSensei)) { return mysql_query("UPDATE `users` SET `sensei`=".$user." WHERE `userid`=$userid"); } else { $newSensei = $ir['sensei'].','.$user; //Concat the records with the new one return mysql_query("UPDATE `users` SET `sensei`=".$newSensei." WHERE `userid`=$userid"); } }   And finally, the usage senseiUpdate($_POST['userid']); //For a _POST senseiUpdate($student); //For a declared variable   Hope that helps -sniko
  9. laptop code or pepsi
  10. trim() nl2br() stripslashes()
  11. Hello. I have recently bought my 3rd reseller, and i am willing to sell space to you, at an affordable price. I currently have 3 packages. * Quota and Bandwidth is measured in MB. Bronze ~£3 p/m Silver ~£5 p/m Gold ~£7 p/m If you have any questions please ask. My Experiences I have mainly only bought my reseller so i can control my own websites and i have decided to try managing it on a bigger scale (ie. Not just my sites). I bought this Linux reseller off webhost.uk.net and i haven't had any bad experience with the reseller as of yet. Again, please don't be hesitant to ask questions. Thanks for your time and interest. -sniko
  12. Rock Britains wall plug or Americas wall plug?
  13. haha, thats funny
  14. @Djk: I have Both! But i prefer the original Gta4 lol. Good Question though Blade Maker.
  15. Will Do. Ill edit the download links as soon as it is done. -sniko
  16. CODE HAS BEEN UPDATED View the post Thanks -sniko
  17. I voted 'You can equip 1 of each armor/weapon' simply because it is more life like. For example, on the GrandTheftAuto series, you have all the weapons in your jacket pocket....hmmmm. That's not realistic, but yet, they put it in a realistic city (with fictional names of course) and well, the unrealism of the weapon equipping ruins it for me, not a lot i must say, but it isn't perfect. Anyway, having as many items you can equip, you might as well get rid of the equip/unequip system (if you are using mccodes) which would then not make the game competitive, as each item has different attributes, correct? Then buy the best and have 100s of each, thus, 100s of added attributes, someone WILL be 'the don' of the game and ruin the experience for others. Just my thoughts... -sniko
  18. Hello, Sorry to bring up an 'old' topic, but, i have been editing the gang system and i am soon to release version 1.1 quite soon. Ill upload a zip of it once finished to the original post (overwriting the current zip) and on my next post. I have also included documentation with the requested feature list (which i shall paste into the original post as well). The documentation has 6 sections to it; Screenshots Features Updates Manual Support Disclaimer I look forward to completing this and i will soon bring an add on to the modification, the forums. Thanks for your time -sniko
  19. You're welcome
  20. Dabs and Coldblooded as well as others (Hopefully, including yourself) will worry on where you got the script. Is it legal? Just a question, not to intend harm or offence. -sniko
  21. sniko

    First Project

    I to, have just signed the petition
  22. I sometimes get randomly logged out (Im using AOL Browser) and it's really fustrating. Any help..? Thanks -sniko
  23. sniko

    Review my site

    Looks very professional. Well Done Indeed. -sniko
  24. Instead of background-size: 100%; Try background-width: 100%; background-height: 100%; -sniko
  25. You may want to think about the server. With a lot of queries running every minute, your provider may suspend you as it puts strain on the server. -sniko
×
×
  • Create New...