search
HomeBackend DevelopmentPHP TutorialUse HTML forms with PHP to access single and multiple form values_PHP tutorial
Use HTML forms with PHP to access single and multiple form values_PHP tutorialJul 13, 2016 pm 05:28 PM
htmlphpusevalueandMultiplerightsubmituserofcombineformaccesspass

The ability to more easily operate on information submitted by users through HTML forms has always been one of PHP's strengths. In fact, PHP version 4.1 adds several new methods for accessing this information and effectively removes one of the most commonly used methods from previous versions. This article examines different ways of working with information submitted on an HTML form, using both older and newer versions of PHP. This article starts by studying a single value and then builds a page that can generally access any available form value. Note: This article assumes you have access to a web server running PHP version 3.0 or higher. You need a basic understanding of PHP itself and creating HTML forms. HTML Forms As you read this article, you'll see how different types of HTML form elements provide information that PHP can access. For this example, I used a simple information form consisting of two text fields, two checkboxes, and a select box that allows multiple items: Listing 1. HTML form

Tour Information

Mission Information

In the absence of a specified method, the form uses the default method GET, which is used by the browser to append the form value to the URL. As shown below: http://www.vanguardreport.com/formaction.php?ship=Midnight+Runner&tripdate=12-15-2433&exploration=yes&crew=snertal&crew=gosny Figure 1 shows the form itself. Figure 1. HTML forms the old way: accessing global variables The code shown in Listing 2 handles form values ​​as global variables: Listing 2. Form values ​​as global variables "; echo "Tripdate = ".$tripdate; echo "
"; echo "Exploration = ".$exploration; echo "
"; echo "Contact = ".$contact; ?> The generated Web page displays the submitted value: Ship = Midnight Runner Tripdate = 12-15 -2433 Exploration = yes Contact = (As you will see later, Contact has no value because the box is not checked) The notation in Listing 2 is certainly convenient, but it is only set if the PHP directive register_globals. Available only when on. Before version 4.2, this was the default setting, and many PHP developers were not even aware of this problem. However, starting with version 4.2, the default setting for register_globals is off, in which case. This notation does not work properly because the variables are no longer created and initialized with the appropriate values. However, you can initialize these variables in other ways. The first method is to change the value of register_globals. Many developers using shared servers do not have the permission. Change this value for the entire server, but can change the behavior for a specific site. If you have access to the .htaccess file, you can enable register_globals by adding the following directive: php_flag register_globals on Given the uncertainty about whether this feature is available. , developers are advised not to use or rely on this method of obtaining variables. So what are your options? If your system is running version 4.1 or higher, your other option is to use import_request_variables(). Optionally register a collection of global variables. You can use this function to import get, post, and cookie values, and prefix each item if you wish. For example: "; echo "Tripdate = ".$formval_tripdate; echo "
"; echo "Exploration = ".$formval_exploration; echo "
"; echo "Contact = ".$formval_contact; ?> Here, the get and post values ​​are imported - using c to import the cookie value - and since p follows g, the post value will overwrite the get value of the same name. But what if you, like many developers, are not running version 4.1 or higher? Accessing a Collection of Form Values ​​For those running older versions or who prefer not to use global variables, there is an option to use the $HTTP_GET_VARS and $HTTP_POST_VARS arrays. Although these collections are deprecated, they are still available and are still widely used. When they are no longer used, they will be replaced by the $_GET and $_POST arrays added in version 4.1. The types of these two types of arrays are hash tables. A hash table is an array indexed by string values ​​rather than integers. When working with forms, you can access values ​​by their names, as shown in Listing 3: Listing 3. Accessing form values ​​via hash table $ship_value = $HTTP_GET_VARS[ship]; echo $ship_value; echo " $ship_value = $HTTP_GET_VARS[ship]; echo $ship_value; echo "
"; $tripdate_value = $HTTP_GET_VARS[tripdate]; echo $tripdate_value; echo "
"; $exploration_value= $HTTP_GET_VARS[exploration]; echo $exploration_value; echo "
"; $contact_value = $HTTP_GET_VARS[contact]; echo $contact_value; ?> Using this method you can retrieve the value of each field by name. Single name, multiple values ​​Until now, each name corresponded to only one value. What happens if there are multiple values? For example, the crew species listbox allows multiple values ​​to be submitted with the name crew. Ideally, you want to use the values ​​as an array so you can retrieve them explicitly. You must modify the HTML page slightly. Fields to be submitted as arrays should be named with square brackets, as in crew[]: Listing 4. Modify the HTML page... ... Once you make the change, retrieving the form values ​​actually results in an array: Listing 5. Accessing variables as an array... $crew_values ​​= $HTTP_GET_VARS[crew]; echo "0) ".$crew_values[0]; echo "
"; echo "1) ".$crew_values[1]; echo "
"; echo "2) ".$crew_values[2]; . .. Now, after submitting the page, multiple values ​​will be displayed: 0) snertal 1) gosny 2) First notice that this is an array with indexes starting from 0. The first encountered value is in position 0, and the following ones. The value is at position 1, and so on. In this case, I only submitted two values, so the third item is empty. Usually, you don't know how many items will be submitted, so you can take advantage of the fact that it is an array. sizeof() function to determine how many values ​​were submitted without having to call each item directly: Listing 6. Determining the size of the array... for ($i = 0; $i "; } ... However, sometimes the problem isn't too many values, but rather no values ​​at all. The surprisingly disappearing checkbox only appears when it's actually selected. It's important to realize that otherwise, its disappearance tells you all you need to know: the user didn't click the checkbox. When using a checkbox, you can check it explicitly using the isset() function. Whether the value was set: Listing 7. Check if the checkbox was submitted... $contact_value = $HTTP_GET_VARS[contact]; echo $contact_value; if (isset($contact_value)) { //The checkbox was clicked } else { / /The checkbox wasn't clicked } ... Getting all form values ​​The checkbox field is just one example of a situation where you might not be completely sure about the expected form value names. Often, you will find it useful to have a routine that accesses all form values ​​in a common way. Fortunately, because $HTTP_GET_VARS and its ilk are just hash tables, you can manipulate them with some properties of arrays. For example, you can use the array_keys() function to get a list of all potential value names: Listing 8. Get a list of form value names... $form_fields = array_keys($HTTP_GET_VARS); for ($i = 0; $i "; } .. . In this example, you're actually combining several techniques. First, retrieve an array of form field names and name it $form_fields. The $form_fields array is just a typical array, so you can use the sizeof() function to determine the number of potential keys and loop over each item. For each item, retrieve the name of the field and then use that name to get the actual value. The resulting Web page looks like this: ship = Midnight Runner tripdate = 12-15-2433 exploration = yes crew = Array There are two important things here. First, the contact field returns no value at all, as expected. Second, the crew value (which, by the way, you probably know: its name is crew, not crew[]) is an array, not a value. In order to actually retrieve all values, you need to detect all arrays using the is_array() function and process them accordingly: Listing 9. Processing arrays... for ($i = 0; $i "; } } else { echo $thisField ." = ". $thisValue; } echo "
"; } ... The result is all Actual data submitted: ship = Midnight Runner tripdate = 12-15-2433 exploration = yes crew = snertal crew = gosny One final note: Now that you have a form action page that can accommodate any form value you submit, you need Take a moment to consider a situation that often surprises PHP programmers. In some cases, designers choose to use a graphical button instead of a submit button, as shown in Figure 2 and the code is shown in Listing 10. Listing 10. Adding a graphic button ... Crew sp

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/531723.htmlTechArticleThe ability to easily operate on information submitted by users through HTML forms has always been one of PHP's strengths. In fact, PHP version 4.1 adds several new ways to access this information and...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

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

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

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version