Jump to content

DeanWhitehouse

Members
  • Posts

    2,527
  • Joined

  • Last visited

Everything posted by DeanWhitehouse

  1. you can look into javascript to load the image, after the page has loaded. Or use innerHTML to replace the image, protecting it slightly
  2. try adding session_unset(); aswell
  3. first off, when they close the browser the session is ended, and the session is automatically ended after 30mins i think, without it being started again , there may be a way to change this in the php ini file.
  4. ./ go back one folder ../ go back two , etc.
  5. ok, try this while($rows = mysql_fetch_array($sql)) { if($i == 3){echo "<tr><td> </td></tr>"; $i = 0;} echo $rows['visitors']; $i++; }
  6. something like this? while($rows = mysql_fetch_array($sql)) { if($i == 3){echo "<tr><td> </td></tr>"; } echo $rows['visitors']; $i++; } i think that should work, with some tweaking
  7. will phpinfo(); not tell u?
  8. i'm not an expert but you will need to look into curl i think ,
  9. or you can use a database
  10. i don't know its your code, show me functions .php
  11. so you want to make an e-snipe code?
  12. I have this code <input name="uname" type="text" class="Field1" id="uname" value="Username" onFocus= " if(this.value = 'Username') { this.value = ''; } else { alert('cake'); } " onblur= " if(this.value = ' ') { this.value = 'Username'; } " /> but this inserts Username into the field, even if you enter something, any help?
  13. are you making sure the sessions are being set on every page?
  14. maybe restrict access using .htaccess file?
  15. erm, whats the url?
  16. can you post your full code.
  17. using the GET method or the POST method.
  18. the header must be before any html output(i think).
  19. If you want help in doing it in javascript, i can help.
  20. or use the PHPmailer google it.
  21. i think you will need to have a look at using image gd.
  22. $SERVER['REQUEST_URI']; might do it.
  23. Ok, i solved it, i need to have it so it's like 01011920 instead of 1011920
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.