HTML / PHP şeklinde bir dosya yükleme iste

0 Cevap php

Ben bir formda bir dosya yükleme gerektiren çalışıyorum, ancak çalışması için alınamıyor. Herhangi bir fikir? Ben oldukça bir javascript açılır vs sayfada php hata yankı istiyorum. Bir göz ayırdığınız için teşekkür ederiz:

<?php 


// initialize $file1
$file1 = $_POST['file1'];


 // check upload of $file1
 if ($file1 == '' )  { 
$error = "Please upload an image";
 } 


?>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Require upload of an file</title>
</head>

<body>

<?php if ($error) {echo $error;} ?>

<br /><br /><br />

<form id="form1" name="form1" method="post" action="nextpage.php">

<input type="file" size="8" name="file1" />

<input name="Submit" type="Submit" />

</form>



</body>
</html>

0 Cevap