How to implement form submission in php, the specific steps are as follows:
First create an html file containing the form: upload.html
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>上传文件</title> </head> <body> <form action="upload.php" method="post" enctype="multipart/form-data"> <input type="file" name="file"/> <input type="submit" value="提交"> </form> </body> </html>
Related recommendations: "php Getting Started Tutorial"
Create the server file: upload.php
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>显示文件</title> </head> <body> <?php //print_r($_FILES); //获取到临时文件 $file=$_FILES['file']; //获取文件名 $fileName=$file['name']; //移动文件到当前目录 move_uploaded_file($file['tmp_name'],$fileName); //显示文件 echo "<img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/image/763/291/361/1569741453369609.jpg?x-oss-process=image/resize,p_40" class="lazy" src='$fileName' alt="How to implement form submission in php" >"; ?> </body> </html>
Click submit and the file will be displayed:
The above is the detailed content of How to implement form submission in php. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 English version
Recommended: Win version, supports code prompts!

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
