我知道这个问题之前在这里被问过,但我真的需要有人来解释我如何在我的情况下使用它。
这是我上传图片的简单 php 脚本:
<?php
if(isset($_POST['submit'])){
$ipad=$_SERVER['REMOTE_ADDR'];
//This is the directory where images will be saved
$target = "images/";
$email=$_POST['email'];
$target = $target . basename( $_FILES['photo']['name']);
//This gets all the other information from the form
$pic=($_FILES['photo']['name']);
$resultes =mysql_query("SELECT * FROM image WHERE `name` = '$pic'");
if($pic != '' and $email != '' and mysql_num_rows($resultes) == 0){
mysql_query("INSERT into image(name , email, ipadd) values ('$pic','$email','$ipad' )");
//Writes the photo to the server
if(move_uploaded_file($_FILES['photo']['tmp_name'], $target)) {
?>
<div class="error">The file has been uploaded, and your information has been added to the directory</div>
<? }
} else {
//Gives and error if its not
echo '<div class="error">'. $gal_error_noupload .'</div>';
}
$pic=='';
}
?>
如何添加调整大小代码?那就是给这里