Jump to content
MakeWebGames

POG1

Members
  • Posts

    1,419
  • Joined

  • Last visited

Everything posted by POG1

  1. Re: [Other]Game login page[$9.99]   There is no need for the style in the button. You are adding a class which will relate to some css. Just add the cusor:pointer in the class. ;)
  2. Re: House Picture because u need to edit the array so suit your houses.
  3. Re: Things A Goverment Official Wont Say.... wheres the mangers?
  4. Re: [Mccodes v2] Voting System ($15) Looks like a very good mod, good for people with very little programming knowledge.
  5. POG1

    will ?

    Re: will ? right click the click save
  6. Re: [mccode v2] Events Page Updated. somewhere in the script i found this $page = abs(@intval($_GET['page'])); $page = isset($page) ? abs(@intval($_GET['page'])) : 1; why do u need abs intval on the same value twice? and isnt the page variable set on the page before to the condition will always be true..
  7. Re: [mccode v2] Events Page Updated. This may be good but it won't be "mccode" friendly. For people who won't know what to do the queries will need to be changed to suit the mccode class..
  8. Re: The last person to posts wins Posts: 99,898,872 sick post count lol
  9. Re: House Picture if you use the example i showed you won't need an extra field in the database..
  10. Re: [All Sites] No file images aing u gona provide the apache code to go in the .htacess file?
  11. Re: [mccodes] House Upgrades [$20] i also have a house mod in the making ;)
  12. Re: Guess the next poster wrong! :evil: I think stevie wonder will be next...
  13. Re: House Picture Just use an assoc array;   $pics = array(1=>"houses/default.png",2=>"houses/mansion.jpg"); echo $pics[$ir['hID']];   with the pics arrray the number relates to the house id you are living in
  14. Re: Login/register & header conversion help needed! The login wont need converting, it only sends data through a form. In game, they layout needs to be split up take a look at each individual functions in the header.php file for a guide
  15. POG1

    Dogdy bussines

    Re: Dogdy bussines for me, 3-4 hours a day on the computer
  16. POG1

    Dogdy bussines

    Re: Dogdy bussines pokemon defines fasion   *for geeks*
  17. Re: [mccode]Multi alert This is a stupid idea.. Some people will share a computer and therefore share an ip, they will then be sending events all the time. Put this on pages where the user sends stuff (items,money,crsystals) so they can play without cheating ;)
  18. Re: total noob looking for basic setup of items/options/affects manual   Now i wonder why i'm almost invisble on here... Staff being competely rude and insolent I think it was ment to be a joke. But she has a point, $15 for a $300 script, not bad lol
  19. Re: Changing Whole Header when in hospital in each of the page functions just use if statements, here is a simple example.   <?php function startheaders() { global $ir; if($ir['jail'] > 0) { // startjail headers } elseif ($ir['hospital'] > 0) { // start hospital headers } else { // start normal headers } } ?> Thats the first way i thought of doing so.
  20. POG1

    New Login pg.

    Re: New Login pg. flash sucks on linux
  21. Re: [v1/v2] Redirect Before Login (tested) It's also neater to have it in a single file instead of 2.
  22. Re: Help with DB Class. Loading time took 0 second(s) with 5003 queries. Sounds made a magic database class. Pretty good performance, but someone will probably post with a faster example..
  23. Re: [mccodes v2] Free Login PNG can be ;)
  24. POG1

    Dropdown box.

    Re: Dropdown box. Try something like this on the select code floydian posted (this is a general guide not the actual code before you reply with an error) <select name="someName" onChange="window.location='pageurl.php?itmtype='+this.value;">
  25. Re: [v1/v2] Redirect Before Login (tested) The logging in page don't need any php as all it does is redirect. But i would just echo then redirect using a php function *hint header()*
×
×
  • Create New...