Jump to content

ZulfadlyAshBurn

Members
  • Posts

    783
  • Joined

  • Last visited

Everything posted by ZulfadlyAshBurn

  1. Thats not a php layout. Thats a folder layout...
  2. they will pm you if they are willing.
  3. yes you may post here. maybe a ranking system?
  4. dude, you are suppose to upload it online then link it.... not point it to you c drive... upload it here
  5. please screenshot.
  6. Let me get some. Will help you out when i wake up
  7. U need the first code and the second code together
  8. Yah,cause i re-dited it. make sure your code have the exact thing.
  9. i edited the script above, try this <?php if (!isset( $_POST[ 'submitted5' ])) { $expire=time()-60*60*24*30; setcookie("downloaded", "",$expire); } ?>
  10. add this <?php if (!isset( $_POST[ 'submitted5' ])) { $expire=time()-60*60*24*30; setcookie("downloaded", "",$expire); } ?> before this <?php if ( isset( $_POST[ 'submitted5' ])) {
  11. sorry pardon me, it should be this if( isset( $_POST ['download'] ) && isset( $_POST ['download'] ) == 'Download' && !isset($_COOKIE["downloaded"])) { $expire=time()+60*60*24*30; setcookie("downloaded", "yes", $expire);
  12. Shared, VPS or Dedicated?
  13. change this line if( isset( $_POST ['download'] ) && isset( $_POST ['download'] ) == 'Download') { to this if( isset( $_POST ['download'] ) && isset( $_POST ['download'] ) == 'Download' && isset($_COOKIE["downloaded"])) { $expire=time()+60*60*24*30; setcookie("downloaded", "yes", $expire); and anyway you haven't change the signature.
  14. ouh great, you just copied my signature eh? i deserve some recognition... anyway, what do you want the page to do?
  15. yes, please post your codes here.
  16. YES. remember to start the session first. <?php session_start(); ?>
  17. @The Little Guy this is the link for the site. i don't think you would require login cause i am able to access the site without any logins.
  18. if you were to press F5 or press the refresh button, it will resubmit the form but once you re-enter the url, i wont show it anymore. what i would actually do is to set a cookie when the user press download then once the user is at the downloading page, clear the cookie. the downloading will only be displayed if cookie is set.
  19. How are you submitting the post and displaying the dowload link or etc?
  20. if you are using session to check if the form is submitted, you might want to session_destroy it.
×
×
  • 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.