Jump to content

[SOLVED] error $_POST, no output


homer.favenir

Recommended Posts

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!

Link to comment
https://forums.phpfreaks.com/topic/108630-solved-error-_post-no-output/
Share on other sites

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"]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.