Jump to content
MakeWebGames

sniko

Members
  • Posts

    2,210
  • Joined

  • Last visited

  • Days Won

    47

Everything posted by sniko

  1. sniko

    Review my site

    Looks very professional. Well Done Indeed. -sniko
  2. Instead of background-size: 100%; Try background-width: 100%; background-height: 100%; -sniko
  3. 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
  4. sniko

    First Project

    I think you did a good job, and it's actually ery informative. Although you could have used the house style of the original site, layout and shades of green. You could also have used Petition Buzz to help go against the school closure. As it is very known (Just saw one article and it had 19k signatures) so you could use this to your advantage :). Also the site has Facebook and Twitter intergration, so you can refer people on those specific social networking sites much easier. -sniko
  5. Are you looking for something like this? http://makewebgames.io/showthread.php/33977-V2-Class-Benefits-Fighter-Traveller-Banker?highlight=class * Sorry for the messy presentation, some bbCodes do not work since the switchover -sniko
  6. Hello, People are concerned when creating a website template what it would look like for different users (with a diverse range of screen resolutions) and what it would look like. Anyway, i have found this site which simulates the screen for you and is very handy to see what the outcome is like on different resolutions. Here is the site: http://www.infobyip.com/testwebsiteresolution.php I hope this helps many of you trying to achieve the best css programming to a good quality on different resolutions with ease. Thanks for reading -sniko
  7. sniko

    Free Host

    Okay, add my IM (in my signature) (:
  8. sniko

    Free Host

    If you have a valid license i can arrange something for you (shared hosting) -sniko
  9. They would select the option 'other' ..?
  10. I use Crimson Editor (:
  11. sniko

    Phones

    Im thinking of a new phone -HTC Desire s
  12. Go for the lite version to develop your understanding, then decide. My opinion.
  13. NICE IMPROVEMENT. Very good. Thanks for the update!
  14. Nice to see you've been working on the engine and developing it a little more. Good luck with the sales and future mccodes experience :) -sniko
  15. sniko

    [Practice] OOP

    Okay, thanks A_B i'll make suitable amendments when i get some free time, thanks for the reply :)
  16. sniko

    [Practice] OOP

    Hey there, I finally found a few minutes of free time, and I wanted to gain more knowledge in object-orientated programming within PHP, so I hit the manual, and this is what i have created. I have implemented the following; __construct Extending   If you have a free moment, could you see if it is OK and indicate where I could improve. Many Thanks! About the "program" Using the classes you input various values to each variable, and it validates it for you. The outcome using the code below is; <?php /* Extending a class March 29, 2011 sniko _val = validate class */ class validate { /* This is my validation class, to check validation is ok, if not show a message */ final public function length($what, $l) { if(strlen($what) <= $l) { die($what." has to be more than ".$l." characters in length!"); } } final public function numeric($what) { if(! is_numeric($what) ) { die("You put an '".$what."' where it has to be numeric!"); } } } class cart { /* Declare all the variables to be used in the extended class of cart */ private $owner; private $price; private $store; private $_val; } class cart_show extends cart { public function __construct() { /* So i can use the validation class in each individual function */ $this->_val = new validate(); } function setOwner($name) { $this->owner = $name; $this->_val->length($name, 3); //validate (using the validation class) the string length } function setPrice($price) { $this->price = $price; $this->_val->numeric($price); //validate (using the validation class) it is numeric } function setStore($store) { $this->store = $store; $this->_val->length($store, 5); } } $obj = new cart_show; $obj->setOwner('Harry'); $obj->setPrice('60'); $obj->setStore('Walmart'); echo $obj->owner .' spent £'.$obj->price .' at '.$obj->store; ?> Many thanks - sniko
  17. sniko

    Multi Users table

    * I don't do jargon, so i'll speak plain english Personally, I use multiple tables for user accounts, for different aspects on the user, for instance; One for login details (IP, Email etc) One for in-game information (Money etc) One for user statistics (Fighting abilities)   But, only to make it easier for myself to edit things within phpmyadmin. You would have to join the tables together in a mysql query. As well as referencing them correctly, so you can easily cross-reference the tables with each individual user. I'm not too experienced with testing the speed, but i've heard it helps it, not sure how. Anyway i hope that helps -sniko
  18. the bob parts made me laugh...and follow what paul, dominion and djk suggested -sniko
  19. I think they got your number by you signing up to something else, and you either didn't or did tick a box upon signup something like "I allow you to share my details with 3rd parties" - they then sell those details to others. Anyhow, i was laughing when i read it, BUT thankfully it didn't go any further -sniko
  20. I think a_bertrand is trying to say, can you give more information on the project, rather than just the genre. Also, good luck with your team :)
  21. Hope it all goes well for you :) - Looking good so far :) -sniko
  22. General Doom has posted some good advice :)
  23. Needs to be sorted.
  24. Very informative, thanks!
  25. ^. Never seen a Chinese movie? there is always one with the wise in it good job in my opinion.
×
×
  • Create New...