search
HomeWeb Front-endHTML TutorialWhy can't this form be submitted? _html/css_WEB-ITnose

Hello everyone, the form is as follows:

Person Id:
Person Name:
Group Id :
Customer Key:
Photo: & LT; input Type =" Submit "value =" Submit "/& GT;
& LT;/Form & GT;
After publishing through IIS:
1. Just select the file, which is the last Photo. After clicking Submit, the page cannot jump successfully, and the mouse keeps spinning...
2. If you do not select the last Photo file, Submission is OK.
I am a newbie in web development, please give me some guidance, thank you all!


Reply to discussion (solution)

Photo:


type should not be file, try changing it

The file attribute of input stores a pseudo path, which cannot be processed on the server side. The image needs to be uploaded to the server for further processing. Directly passing a pseudo path is not allowed. I don’t know if this is the problem you encountered?

Pictures cannot be submitted directly to the form. You need to transfer the picture to the server first, and then submit the form

Thank you everyone, the problem has been found. It is not a problem with the form, but a problem with the background program. .

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
MySQL事务处理:自动提交与手动提交的区别MySQL事务处理:自动提交与手动提交的区别Mar 16, 2024 am 11:33 AM

MySQL事务处理:自动提交与手动提交的区别在MySQL数据库中,事务是一组SQL语句的集合,要么全部执行成功,要么全部执行失败,保证了数据的一致性和完整性。在MySQL中,事务可以分为自动提交和手动提交,其区别在于事务提交的时机以及对事务的控制范围。下面将详细介绍自动提交和手动提交的区别,并给出具体的代码示例来说明。一、自动提交在MySQL中,如果没有显示

PHP表单处理:表单数据查询与筛选PHP表单处理:表单数据查询与筛选Aug 07, 2023 pm 06:17 PM

PHP表单处理:表单数据查询与筛选引言在Web开发中,表单是一种重要的交互方式,用户可以通过表单向服务器提交数据并进行进一步的处理。本文将介绍如何使用PHP处理表单数据的查询与筛选功能。表单的设计与提交首先,我们需要设计一个包含查询与筛选功能的表单。常见的表单元素包括输入框、下拉列表、单选框、复选框等,根据具体需求进行设计。用户在提交表单时,会将数据以POS

Java实现表单的实时验证与提示功能Java实现表单的实时验证与提示功能Aug 07, 2023 am 10:42 AM

Java实现表单的实时验证与提示功能随着网络应用的普及和发展,表单的使用也变得越来越重要。表单是网页中用于收集和提交用户数据的元素,例如注册或登录页面的表单。在用户填写表单时,经常需要对其输入的数据进行验证和提示,以保证数据的正确性和完整性。在本文中,我们将介绍如何使用Java语言实现表单的实时验证与提示功能。HTML表单的搭建首先,我们需要使用HTML语言

如何在Nette框架中使用表单和验证?如何在Nette框架中使用表单和验证?Jun 04, 2023 pm 03:51 PM

Nette框架是一款用于PHPWeb开发的轻量级框架,以其简单易用、高效稳定的特点受到了广泛的欢迎和使用。在开发Web应用时,使用表单和验证是不可避免的需求。本文将介绍如何在Nette框架中使用表单和验证。一、表单构建在Nette框架中,表单可以通过Form类来创建。Form类在NetteForms命名空间中,可以通过use关键字引入。useNetteF

如何在PHP表单中增加Token验证机制如何在PHP表单中增加Token验证机制Jun 24, 2023 pm 04:54 PM

在Web开发中,表单是用户和服务器之间沟通的重要渠道。为确保安全,我们需要在表单提交时添加Token验证机制来避免恶意攻击者的进攻。Token验证的基本原理是:服务器生成随机数,在表单中添加隐藏域的方式将Token传递给客户端,客户端提交表单时将Token发送回服务器,服务器验证Token的正确性,如果匹配,则允许表单提交,否则拒绝提交。下面我们将介绍在PH

如何优化Vue开发中的表单自动填充问题如何优化Vue开发中的表单自动填充问题Jun 29, 2023 am 10:20 AM

如何优化Vue开发中的表单自动填充问题随着Vue框架的不断发展和应用,越来越多的开发者选择使用Vue来开发前端应用。在Vue开发过程中,表单是一个非常常见的组件,而表单自动填充问题也是开发者经常会遇到的一个问题。本文将介绍如何优化Vue开发中的表单自动填充问题,以提高用户体验。表单自动填充问题指的是当用户在表单中输入某些信息后,关闭浏览器再重新打开时,浏览器

表单传送数据到php乱码怎么办表单传送数据到php乱码怎么办Nov 10, 2022 am 09:31 AM

表单传送数据到php乱码的解决办法:1、在html中的head处添加“<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">”;2、确保所有文件都是utf8编码;3、在php中添加“header("Content-Type:text/html; charset=UTF-8");”。

Java Git新手入门:从零开始探索版本控制Java Git新手入门:从零开始探索版本控制Feb 23, 2024 am 10:25 AM

git简介Git是一个分布式版本控制系统,这意味着每个开发人员的计算机上都有一个完整的代码库副本。这与集中式版本控制系统(如Subversion或Perforce)不同,后者只有一个中央代码库。分布式版本控制的好处在于,它提高了协作的效率,因为开发人员可以离线工作,并在以后与中央代码库同步。安装Git要使用Git,您需要先在您的计算机上安装它。您可以从Git官网下载适用于您操作系统的安装程序。安装完成后,您可以在命令行中输入git--version来检查是否安装成功。Git基本概念版本库:Git

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

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 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)