How would you impletement download and upload a file in php
Answers were Sorted based on User's Feedback
Answer / vijaya
refer this link for uploading
http://php-mysql-javascript-css.blogspot.com/
for files downloading you can use headers .
<?php
// We'll be outputting a PDF
header('Content-type: application/pdf');
// It will be called downloaded.pdf
header('Content-Disposition: attachment;
filename="downloaded.pdf"');
// The PDF source is in original.pdf
readfile('original.pdf');
?>
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / master
uploading is down using html file tag and later on moved to
the destination location.
for downloading we can use the pdf format so once we click
on the link the pdg format of the file will be downloaded
| Is This Answer Correct ? | 1 Yes | 2 No |
How to repeat a string to a specific number of times in php?
Which Scripting Engine PHP uses?
What language is php based on?
•How to access crystal reports through PHP code?
Which PHP function would you use to send an email?
Explain PHP?
Which function would you use to merge two arrays in php?
What is the difference between die () and exit () in php?
how we can upload and view video files
What is $$ in php?
Why php 7 is faster?
What is difference between sql and php?