Jump to content
MakeWebGames

Danny696

Members
  • Posts

    2,632
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Danny696

  1. I think i remember you :)
  2. LMAO, this topic should be dead and buried. Im not 3rd prestige and still no nuke xD but i havent been boosting.
  3. $_SERVER['PHP_SELF'] = insecure replace <form action="'.$_SERVER['PHP_SELF'].'" method="post"> With <form action="" method="post"> Replace <a href="'.$_SERVER['PHP_SELF'].'?page='.$next.'"> With: <a href="?page='.$next.'"> Done
  4. Yay, glad too see your making more mods, lets see how many unique mods are left ;)
  5. For god sake its $db->escape
  6. Yes, if not, its not hard to convert, this forum itself has about 10 topics just converting
  7. Whats with the strip_my_slashes, 'tis not the bext, what happenes if i mres and addshlashes to it, i still endup with at least 1 /
  8. Theres an admin panel on here, and edit that to make the others
  9. Im php 5 Look at thos: $var = is_int($var2);
  10. what about a PHP function is_int ;)
  11. Oh god, its an item and an item type, how hard is that xD
  12. Whats with you and RTFM
  13. that comment wont work the /* needs to be at the start of the line
  14. Thanks, didnt work tho.
  15. Use a .htpassword program. Ver simple to use; Heres one im using: http://tools.dynamicdrive.com/password/
  16. Why wouldnt you want anyone to be staff. Duh...
  17. To know if they allow crons or not
  18. Wopps
  19. 5) Shoot yourself xD
  20. Ok, im having slight problems with my jQuery login form now. Ive never bothered to learn all of jQuery, but i know some function well, e.g. $.post $.get, $.ajax. But when making this, i came across a problem. When the user is logging in, i want it to appear to (for example) say checking username.... then 2-4 seconds later it says Success... etc. but how i have it, it just shows up like its always been there :/ Heres my Js code: function submit_login() { var username = $('#username').val(); var password = $('#password').val(); alert('User: '+username+' Pass: '+password+'.'); $('div.page').html('<big>Logging you in...</big> [img=/images/loading.gif] Checking username....'); if(username == '') { $('div.page').append('<span style="color: red;">Error! No username</span>'); } else { $('div.page').append('<span style="color: green;">Success...</span> Checking password....'); } } (The alert is for testing) What ive tried so far: $('div.page').append('<span style="color: green;">Success...</span> Checking password....').fadeIn(); $('div.page').hide.append('<span style="color: green;">Success...</span> Checking password....').fadeIn(); $('div.page').append('<span style="color: green;">Success...</span> Checking password....').hide.fadeIn(); None worked, any help is apreciated (even if i cant spell it ;)) even if its wrong Thanks Danny696
  21. Whos your host?
  22. Looks alot better. Althought, i think the session would be better ;)
  23. Two words: Good luck
  24. Ive never heard of .ogg
×
×
  • Create New...