確定虐待嘗試
第一個問題
這是index.php頁面
<a href="/rotkanye/" onclick="window.open('rotuj.php', 'newwindow', 'width=300, height=250'); return false;"> <div class="upload-button">
<div class="upload-cover">ZROTUJ SI SÁM!
</div>
</div> <!-- .upload-button --> </a>
此按鈕打開rotuj.php,這cotains
<?php Header("Cache-Control: max-age=1, must-revalidate"); if(isset($_FILES['image'])){
$errors= array();
$file_name = $_FILES['image']['name'];
$file_size =$_FILES['image']['size'];
$file_tmp =$_FILES['image']['tmp_name'];
$file_type=$_FILES['image']['type'];
if($file_size > 5097152){
$errors[]='File size must be excately 5 MB';
}
if(empty($errors)==true){
if(move_uploaded_file($file_tmp,"upload/upload/"."juju.png")){
sleep(1);
echo "<script>
window.open('upload/');</script>";
echo "<script>
window.close();</script>";
sleep(1);
}
echo "Prave roto ide!";
}
else{
print_r($errors);
}
}
?>
<html>
<head>
<title>Povedz roticom</title>
<link rel="stylesheet" href="styl1.css" type="text/css">
<style>
h1 {color: white;
left:0;
right:0;
}
</style>
</head>
<body>
<h1>Pridaj rotografiu:</h1>
<form action="" method="POST" enctype="multipart/form-data">
<input type="file" name="image" />
<input type="submit"/>
</form>
</body>
</html>
上上傳按鈕
id想知道,代碼是d後如何到達rotujeme.eu/upload/index.php一個
和第二個問題是如何上傳文件,當你選擇你的形象,腳本將上傳,命名爲juju.jpg和index.php文件中rotujeme.eu/upload/將使用它 我想做到這一點的方式,當你用你自己的文件,只有你可以看到它在下一個窗口中,然後將被刪除或重命名
<div id="primaryContainer"> <a class="btn_join_small" href="#" style="float: center;">
<img class="loading_arrow" src="upload/juju.png" />
</a>
這是代碼,這是在rotujeme使用上傳的圖片部分。 eu/upload/index.php
我不明白你在問什麼。你能澄清,或者至少張貼一些代碼嗎? – TricksfortheWeb