How to create manual php header?
Posted
by snikolov
on Stack Overflow
See other posts from Stack Overflow
or by snikolov
Published on 2010-06-02T08:36:20Z
Indexed on
2010/06/02
8:44 UTC
Read the original article
Hit count: 206
hello i would like to know how would it be possible to create a manual php header example
header("Content-Disposition: form-data; name=\"$fieldname\"; filename=\"$filename\");
instead of using that i would like to create manual it as
$senddata = "Content-Disposition: form-data; name=\"$fieldname\"; filename=\"$filename\"".$nn;
© Stack Overflow or respective owner