Hi, I have used $_POST with type=“text” and for type=" hidden". I am now using an html form with input type=“file” but I do not get any file name data from the $_POST.
html form has
php code has
$file = $_POST[“file”];
echo “Uploaded file = “,$file,”
”;
nothing is echo’d. What am I missing?