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 |
What does a dependant variable mean?
How to set cookies?
How to open standard output as a file handle?
What does mvc stand for and what does each component do?
How arrays are passed through arguments?
What are the rules in creating php variable?
How do you explain independent and dependent variables?
How to create a mysql connection?
What is sorting php?
Is it possible multiple inheritance in php?
What is the super method?
What is the use of header() function in PHP? What the Limitation of HEADER()?