homer.favenir Posted June 4, 2008 Share Posted June 4, 2008 hi to all, i know the function of $_POST but i cant figure it out what is wrong with my script... <?php //$file = file("Portfolio extracted/sent/UFPB Catalog_5-28-08.txt", 4); //compare_write($_POST["currFile"], $_POST["prevFile"]); $file = file($_POST["prevFile"]); print_r($file); /*foreach($file as $word) { echo $word . "<br>"; }*/ ?> my form is: <html> <body> <form action="burn.php" method="POST" enctype="multipart/form-data"> <table border=0> <tr> <td> Please Enter Previous File: </td> <td><input name="prevFile" type="file"></td> </tr> <tr> <td> Please Enter Current File: </td> <td><input name="currFile" type="file"></td> </tr> <tr> <td> Enter New Filename: </td> <td> <input name="newFile" type="text"> </td> </tr> <tr> <td> <input name="compare_write" type="submit" value="Execute compare/new file"> </td> </tr> </table> </form> </body> </html> can anyone please check my script.... thanks! Quote Link to comment https://forums.phpfreaks.com/topic/108630-solved-error-_post-no-output/ Share on other sites More sharing options...
teng84 Posted June 4, 2008 Share Posted June 4, 2008 i dont know what are you trying to do with this hi to all, i know the function of $_POST but i cant figure it out what is wrong with my script... <?php //$file = file("Portfolio extracted/sent/UFPB Catalog_5-28-08.txt", 4); //compare_write($_POST["currFile"], $_POST["prevFile"]); $file = file($_POST["prevFile"]); print_r($file); /*foreach($file as $word) { echo $word . "<br>"; }*/ ?> i believe you should use file not post $_FILES["prevFile"] Quote Link to comment https://forums.phpfreaks.com/topic/108630-solved-error-_post-no-output/#findComment-557149 Share on other sites More sharing options...
homer.favenir Posted June 4, 2008 Author Share Posted June 4, 2008 thanks pare! mabuhay....are you a filipino? where are you from? Quote Link to comment https://forums.phpfreaks.com/topic/108630-solved-error-_post-no-output/#findComment-557180 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.