Type code in to a text input form, how?
问题 I want to know the best way of writing out my "$imagepath" in to this input This is my upload script <?php if(isset($_POST['submit'])){ if (isset ($_FILES['new_image'])){ $imagename = $_FILES['new_image']['name']; $source = $_FILES['new_image']['tmp_name']; $target = "temporary_images/".$imagename; move_uploaded_file($source, $target); $imagepath = $imagename; $save = "temporary_images/" . $imagepath; //This is the new file you saving $file = "temporary_images/" . $imagepath; //This is the