Forum Moderators: coopster
I'm trying to use script for 'Emailing secure download links', as specified in manual. It is suggested to set up a form to collect the required information, then user need submit this form.
Here is their form example:
<form name="form" method="get"
action="demo.php">
<p><input type="text" name="name"></p>
<p><input type="text" name="email"></p>
<p><input type="submit" name="button1"></p>
<?php linklokemail('file1.zip,file2.exe',60,0,
'http://www.yoursite.com/index.htm,3');?>
</form>
I placed this form in html page and saved it as demo.php file. But when click submit, nothing emailed and page not redirected. Does someone have ideas?