结合PHP使用HTML表单(3)
令人惊奇的消失的复选框
复选框只有实际被选中时才被提交,认识到这一点很重要。否则,它的消失将告诉您所需知道的实情:用户没有单击复选框。使用复选框时,您可以使用 isset() 函数显式地检查是否设置了值:
清单 7. 检查是否提交了复选框 ... $contact_value = $HTTP_GET_VARS['contact']; echo $contact_value; if (isset($contact_value)) { //The checkbox was clicked } else { //The checkbox wasn't clicked } ... |
获取所有表单值
复选框字段只是您对预期表单值名称可能不完全有把握的情形的示例之一。通常,您会发现有一个以通用方法访问所有表单值的例程是很有用的。
幸运的是,因为 $HTTP_GET_VARS及其同类只是散列表,您可以用数组的一些特性来操作它们。例如,您可以使用 array_keys() 函数来获取所有潜在值名称的列表:
清单 8. 获取表单值名称的列表 ... $form_fields = array_keys($HTTP_GET_VARS); for ($i = 0; $i sizeof($form_fields); $i++) { $thisField = $form_fields[$i]; $thisValue = $HTTP_GET_VARS[$thisField]; echo $thisField ." = ". $thisValue; echo "br />"; } ... |
在本例中,您实际上结合了几种技术。首先,检索表单字段名称的数组并将其命名为 $form_fields。$form_fields 数组只是一个典型的数组,因此您可以使用 sizeof() 函数来确定潜在键的数目,并对每一项进行循环遍历。对于每一项,检索字段的名称然后使用该名称获取实际值。生成的 Web 页面看起来如下:
ship = Midnight Runner tripdate = exploration = yes crew = Array |
这里有两个重要事项。第一,contact 字段根本没有返回值,这正如预期的那样。第二,crew 值(顺便说一下,您或许知道:它的名称是 crew 而不是 crew[])是一个数组而不是值。为了实际检索所有值,需要使用 is_array() 函数检测所有数组并相应地处理它们:
清单 9. 处理数组 ... for ($i = 0; $i sizeof($form_fields); $i++) { $thisField = $form_fields[$i]; $thisValue = $HTTP_GET_VARS[$thisField]; if (is_array($thisValue)){ for ($j = 0; $j sizeof($thisValue); $j++) { echo $thisField ." = ". $thisValue[$j]; echo "br />"; } } else { echo $thisField ." = ". $thisValue; } echo "br />"; } ... |
结果是所有已实际提交的数据:
ship = Midnight Runner tripdate = exploration = yes crew = snertal crew = gosny |
最后一个说明:点
既然您有了能适应您提交任何表单值的表单操作页面,您就需要抽一点时间考虑一个常常让 PHP 程序员感到意外的情形。
有些情况下,设计人员会选择使用一个图形按钮而不是提交按钮,图形按钮如图 2 所示,代码如清单 10 所示。
清单 10. 添加图形按钮 ... tr>
|
valign="top">Crew species: |
|
colspan="2" align="center">
src="button.gif" name="formbutton"/>
|
...
图 2. 表单上的图形按钮
请注意,尽管上图中只有一个图像,却有两个图形按钮(或期望的结果)。作为开发人员,您可以通过检查和值一同返回的 x 和 y 坐标知道用户单击了何处。事实上,按原样提交该表单可能会创建以如下所示结尾的 URL 和查询字符串:
...snertal&crew%5B%5D=gosny&formbutton.x=37&formbutton.y=14 |
请注意附加到按钮名称的 .x 和 .y。然而,如果您打算提交该页面然后查看结果,您会看到:
ship = Midnight Runner tripdate = exploration = yes crew = snertal crew = gosny formbutton_x = 37 formbutton_y = 14 |
请注意,点号(.)已被转换成下划线(_)。这似乎有点奇怪,但它是必要的,因为 PHP 中的变量名不能有点号,因此 $formbutton.x 会是一个非法变量名。事实上,表单名称中的任何点号 — 不仅仅针对图像按钮 — 都被转换成下划线。
结束语
在本文中,您看到了对用户通过HTML或XHTML表单提交的信息进行访问的几种方法。如何处理该信息取决于您使用的PHP版本和您是否能将表单变量作为全局变量进行访问。无论何种情况,表单值可作为数组使用,并且您可以用数组的特性来循环遍历所有可用的值。

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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

The message "Your organization has asked you to change your PIN" will appear on the login screen. This happens when the PIN expiration limit is reached on a computer using organization-based account settings, where they have control over personal devices. However, if you set up Windows using a personal account, the error message should ideally not appear. Although this is not always the case. Most users who encounter errors report using their personal accounts. Why does my organization ask me to change my PIN on Windows 11? It's possible that your account is associated with an organization, and your primary approach should be to verify this. Contacting your domain administrator can help! Additionally, misconfigured local policy settings or incorrect registry keys can cause errors. Right now

Windows 11 brings fresh and elegant design to the forefront; the modern interface allows you to personalize and change the finest details, such as window borders. In this guide, we'll discuss step-by-step instructions to help you create an environment that reflects your style in the Windows operating system. How to change window border settings? Press + to open the Settings app. WindowsI go to Personalization and click Color Settings. Color Change Window Borders Settings Window 11" Width="643" Height="500" > Find the Show accent color on title bar and window borders option, and toggle the switch next to it. To display accent colors on the Start menu and taskbar To display the theme color on the Start menu and taskbar, turn on Show theme on the Start menu and taskbar

By default, the title bar color on Windows 11 depends on the dark/light theme you choose. However, you can change it to any color you want. In this guide, we'll discuss step-by-step instructions for three ways to change it and personalize your desktop experience to make it visually appealing. Is it possible to change the title bar color of active and inactive windows? Yes, you can change the title bar color of active windows using the Settings app, or you can change the title bar color of inactive windows using Registry Editor. To learn these steps, go to the next section. How to change title bar color in Windows 11? 1. Using the Settings app press + to open the settings window. WindowsI go to "Personalization" and then

Do you see "A problem occurred" along with the "OOBELANGUAGE" statement on the Windows Installer page? The installation of Windows sometimes stops due to such errors. OOBE means out-of-the-box experience. As the error message indicates, this is an issue related to OOBE language selection. There is nothing to worry about, you can solve this problem with nifty registry editing from the OOBE screen itself. Quick Fix – 1. Click the “Retry” button at the bottom of the OOBE app. This will continue the process without further hiccups. 2. Use the power button to force shut down the system. After the system restarts, OOBE should continue. 3. Disconnect the system from the Internet. Complete all aspects of OOBE in offline mode

Taskbar thumbnails can be fun, but they can also be distracting or annoying. Considering how often you hover over this area, you may have inadvertently closed important windows a few times. Another disadvantage is that it uses more system resources, so if you've been looking for a way to be more resource efficient, we'll show you how to disable it. However, if your hardware specs can handle it and you like the preview, you can enable it. How to enable taskbar thumbnail preview in Windows 11? 1. Using the Settings app tap the key and click Settings. Windows click System and select About. Click Advanced system settings. Navigate to the Advanced tab and select Settings under Performance. Select "Visual Effects"

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

We all have different preferences when it comes to display scaling on Windows 11. Some people like big icons, some like small icons. However, we all agree that having the right scaling is important. Poor font scaling or over-scaling of images can be a real productivity killer when working, so you need to know how to customize it to get the most out of your system's capabilities. Advantages of Custom Zoom: This is a useful feature for people who have difficulty reading text on the screen. It helps you see more on the screen at one time. You can create custom extension profiles that apply only to certain monitors and applications. Can help improve the performance of low-end hardware. It gives you more control over what's on your screen. How to use Windows 11

Screen brightness is an integral part of using modern computing devices, especially when you look at the screen for long periods of time. It helps you reduce eye strain, improve legibility, and view content easily and efficiently. However, depending on your settings, it can sometimes be difficult to manage brightness, especially on Windows 11 with the new UI changes. If you're having trouble adjusting brightness, here are all the ways to manage brightness on Windows 11. How to Change Brightness on Windows 11 [10 Ways Explained] Single monitor users can use the following methods to adjust brightness on Windows 11. This includes desktop systems using a single monitor as well as laptops. let's start. Method 1: Use the Action Center The Action Center is accessible
