Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,685
  • Joined

  • Last visited

  • Days Won

    81

Everything posted by Uridium

  1. Nicely done Razor havent tested it but im sure it works fine :)
  2. Uridium

    DeaTH_RideR

    So your 40 your catching up to me ya old fart have a great day pal all the best :)
  3. Looking forward to seeing it Octet :) keep up the brilliant work
  4. makes you sick theres always some epople in the UK that wants to throw their voice in and be heared even if it means them sounding like a complete twat silly thing is though the british public help pay for the Olympics due to most of it being funded by the lottery which we pay for each week and we couldnt even get a seat at the olympics until yesterday. infact the british army were told to sit down on seats that were unoccupied...
  5. I can see your game going a long way. if you can't even be bothered to do the most basic thing's on a game,,,
  6. Anyone been listening to the radio they are saying that the opening ceremony was all political What a pile of crap, For me it was a ceremony now get over it ya strange people
  7. im still working on my wizwych game i have story boards of text regards layout, routines and what will fit best on each page.... Communication is always the key though when working as a group effort, once one person fails to comply with a routine it creates a barrier for the other coders.....
  8. Gramma QUOTE from your login page A evil criminal has fleed to an abandoned town few weeks ago after escaping prison. SOME CORRECTIONS FOR YOU TO NOTE A evil = An evil fleed = fled Capital C for Criminal as your telling someone about a character escaping prison = escaping from prison
  9. question is everyone of them pages different other than just grabbing player data and loction ?
  10. are you calling for a users location in an QUERY look at how viewuser uses the attack link to grab info then do the same for example their whereabouts but i cant see this happening as both people would need to be in the same place example both in NY and both in i donn for arguments sake Winter Ruins location....
  11. DAngelo do you mean so they can be viewed on viewuser or to be attacked example
  12. I did actually watch the opening of the olympics on Iplayer and I have to say it was fookin brilliant, our little nation took ahold of everything that was pure form previous britain and told a brilliant story about it Absouletly loved it well done london :)
  13. I'll be honest i was sceptical about the opening ceremony but damn London have put on a great show...
  14. Too be honest im proud of every country thats entered anyone ever watch Cool Runnings may need to think about what a great country is all about regardless of their achievements :)
  15. On a realistic note i give congratualtions to any country that achieve gold or even those that participate and fail to me everyone who enters the olympics deserves the right to be winners even if they failed..
  16. Its been rammed down our throats for so long now most people iv'e spoken to about it are fed up of hearing about it now..
  17. changing code from ereg to pregmatch isnt too difficult heres a site that should explain how its done http://stackoverflow.com/questions/1374881/how-to-change-phps-eregi-to-preg-match
  18. Uridium

    Where?

    somethnig tells me this us a spambot :)
  19. THE CODER we have been through this problem before we told you that using ' more than 2 times will cause errors as will using " PLEASE review your other problem regards this matter on another thread and read how helpers have shown you the correct procedure to rectify the problem
  20. Uridium

    Another mod.

    Coder i think your trying to do too many tasks at once fix your SQL error firstly then move onto the next item on the agenda or otherwise you will end up with broken scripts all over the place and not remember which ones need fixing
  21. Haunted Dawg actually made something like this worked rather well
  22. Uridium

    Help anyone?

    the use of the \ comes in handy sometimes when achieving mass editing especially where links are concerned
  23. few things to concider... 1 when users switches between pages does the MP3 auto start cos that could become annoying 2 users on slower connections may experience mega lagg till the MP3 has fully loaded... 3 What if your users dont like the music your playing that could put them off your game..
  24. Uridium

    Help anyone?

    to solve your T_STRING error as mentioned by SEKER whos Edits were correct you can do this one of 2 ways to fix it...   require "globals.php"; if($set['stafflock'] == 'Locked'){ echo "Staff Applications are locked at the moment, please try again later.><a href=\"index.php\" >Go Home</a>"; $h->endpage();exit;}echo "<h3>Staff Applications</h3>"; $_POST['ID'] = abs((int) $_POST['ID']); if($_POST['ID'])   or   require "globals.php"; if($set['stafflock'] == 'Locked'){ echo "Staff Applications are locked at the moment, please try again later.><a href='index.php' >Go Home</a>"; $h->endpage();exit;}echo "<h3>Staff Applications</h3>"; $_POST['ID'] = abs((int) $_POST['ID']); if($_POST['ID'])   Remember at all times if your echo or print starts with a " or a ' when you end out your echo or print you need to use the same method as you did to start with. example THIS WILL CREATE AN ERROR print " how are you world '; echo " how are you world '; the reason for this is because you started both statements with a " and ended it with a ' However you can use more than 1 " in a statement but you need to block the next " so the script doesnt think its finished ecample echo "we are here <a href="index.php">HERE</a>"; <<<<< will cause an error cos you have 4 " statements and it thinks the second " is the closing out statement so to cure this you can simply do this echo "we are here <a href=\"index.php\">HERE</a>"; <<<< the use of the \ tells the script you havent quite finished yet so carry on...
×
×
  • Create New...