I am trying to call a PHP function from a button click... Not working
Add into the button Inside Tag : onclick="<?php echo download('memberslogin.php'); ?>"
Trying to call the function :
<?php
function download($filename)
{
.....
}
?>
***Solved*** File download using PHP
Re: File download using PHP
You cannot call a PHP function via JavaScript.
JavaScript runs in the browser, PHP on the server.
JavaScript runs in the browser, PHP on the server.
Re: File download using PHP
Is OnClick JavaScript?
- BaconFries
-
- Posts: 5874
- Joined: Thu Aug 16, 2007 7:32 pm
- BaconFries
-
- Posts: 5874
- Joined: Thu Aug 16, 2007 7:32 pm
Re: File download using PHP
@alex with this being said and you still need to download a file(s) the following URL describes and gives a demo/download of how to achieve this using a protected page. Maybe by downloading the demo zip it will help you to achieve even if it means you have to modify it. Note that Navaldesign is on holiday I believe so any questions you may have about this will/go unanswered till he returns.
https://www.wysiwygwebbuilder.com/forum ... 44&t=20970
https://www.wysiwygwebbuilder.com/forum ... 44&t=20970
Re: File download using PHP
Yes, onclick is JavaScript.
Note that PHP code is not send to the browser. It is processed on the server.
Note that PHP code is not send to the browser. It is processed on the server.
Re: File download using PHP
Thanks Baconfries,
The sample project and code worked for me just fine
Cheers
The sample project and code worked for me just fine
Cheers
Re: ***Solved*** File download using PHP
I am missing one final step.
I need to download the data file which is in my case members.php with the 'I ' separator to an actual csv file, comma selarated..
Any suggestions?
Cheers
I need to download the data file which is in my case members.php with the 'I ' separator to an actual csv file, comma selarated..
Any suggestions?
Cheers