Search results

  1. JoshuaLuke

    [Plugin-Dev] RevASE - Yes, another great ASE. [CookieMonsta]

    Seems like a good idea, another idea would be to do something like a database backup'er,
  2. JoshuaLuke

    [Plugin-Dev] RevASE - Yes, another great ASE. [CookieMonsta]

    'Grammar.' Also, how about rank protection too, if a user isn't above rank 6, or whatever, then the user gets re-directed to the home-page or an error page
  3. JoshuaLuke

    [Plugin-Dev] RevASE - Yes, another great ASE. [CookieMonsta]

    Should just have 'Incorrect access level, please try again' as it's more professional. Also, a consideration would be to make an housekeeping termination system where if a user has tried to login to the housekeeping more than 3 times, the user gets blocked from the housekeeping :)
  4. JoshuaLuke

    [Plugin-Dev] RevASE - Yes, another great ASE. [CookieMonsta]

    Better if you remove the menu bar for the login, and then when a user logs in, the menu bar slides in from the side.
  5. JoshuaLuke

    [Request][Paying] PHP Coder, news and homes

    Any offers so far, how much you wanting?anyone willing to do it?:)
  6. JoshuaLuke

    [SWFS] SWF Release... [SWFS]

    Thats an emu problem, not SWF problem. Also, no credits to Sulake? At least 50% should be to Sulake considering they made mostly everything in that pack.
  7. JoshuaLuke

    [Request][Paying] PHP Coder, news and homes

    UberCMS. I have $15 in my PayPal which is £10, but i'm happy to share some earnings from my hotel to pay some money off
  8. JoshuaLuke

    [Request][Paying] PHP Coder, news and homes

    You sure? Cheers. I'm willing to pay for them if you can code them ASAP
  9. JoshuaLuke

    [Request][Paying] PHP Coder, news and homes

    -___- I have like $15, lul
  10. JoshuaLuke

    [Request][Paying] PHP Coder, news and homes

    Hey, I'm wanting a news comments system and homes system like the below: I'm willing to pay a small amount of cash from PayPal if someone can code them both. Cheers, Josh
  11. JoshuaLuke

    [PHP Help] Checking for a username in the database

    Code works, but if I attempt to put the referal in the text box eg. 'asjerjfkgsle' then the form still submits:- <?php $referal = mysql_real_escape_string(stripslashes(trim(htmlspecialchars($_GET['r'])))); if (isset($_GET['r'])) { $query1 = mysql_query("SELECT username FROM users WHERE...
  12. JoshuaLuke

    [PHP Help] Checking for a username in the database

    That code throws a PHP error, the page won't even load, and surely it must be easier to do it than that. Also, $_GET['user'] is an undefined var so I changed it to $_GET['referal']. Still shows PHP error
  13. JoshuaLuke

    [PHP Help] Checking for a username in the database

    I need to throw an error if the username in the text box doesn't exist. I tried the == '0' but it failed still :l
  14. JoshuaLuke

    [PHP Help] Checking for a username in the database

    Still makes the account even though the username dont exist in the db ;L
  15. JoshuaLuke

    [PHP Help] Checking for a username in the database

    Still does the same thing :l <?php $referal = mysql_real_escape_string(stripslashes(trim(htmlspecialchars($_GET['referal'])))); $checkRef = mysql_num_rows(mysql_query("SELECT * FROM `users` WHERE `username` = '".$referal."'")); if($checkRef > 0) { die('Error'); } ?> Thats defined at the...
  16. JoshuaLuke

    [PHP Help] Checking for a username in the database

    Still does the exact same thing.
  17. JoshuaLuke

    [PHP Help] Checking for a username in the database

    Code doesn't seem to work. It doesn't say anything at the top now, but when I hit 'Create Account' even with a random Referal such as 'HERHJREIEWUREE248ERMDFS' which doesn't exist in the DB, it still submits and makes the account
  18. JoshuaLuke

    [PHP Help] Checking for a username in the database

    Hey there developers, I'm creating a referal system for my CMS (Uber) and i'm wanting it to throw an error if the value inputted in a text box isn't a username in the database, heres my code: $checkRef = (mysql_result(mysql_query("SELECT `username` FROM `users` WHERE `username` =...
Top