Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.