mage for upload: admin_logo.gif size:
1665 bytes
image after upload ON SERVER: admin_logo.gif size: 1692 bytes WHY ???
^^^^^^^^^^^^^^^
and I can't see it in browser!!!!???!
pls help ...
php version:4.04pl1
apache server:1.3.12
so:red hat 7.0
this is my code :
/upload.html /
<head>
<title>Upload a File</title>
</head>
<body>
<h1>Upload a File</h1>
<form enctype="multipart/form-data" method="post"
action="do_upload.php">
<p><strong>File to Upload:</strong><br>
<input type="file" name="img1" size="30"></p>
<P><input type="submit" name="submit" value="Upload File"></p>
</form>
</body>
/* do_upload.php"
<?
if ($img1_name != "") {
copy("$img1", "/tmp/$img1_name")
or die("Couldn't copy the file!");
} else {
die("No input file specified");
}
?>
<head>
<title>Successful File Upload!</title>
<body>
<h1>Success!</h1>
<P>You sent: <? echo "$img1_name"; ?>, a <? echo "$img1_size"; ?>
byte file with a mime type of <? echo "$img1_type"; ?>.</p>
</body>