HTML form value transfer example through get method

HTML form value transfer example through get method
The google.html interface is as shown in the figure

The code is as shown in the figure: (relatively simple, just an input input box and an input submit button. Note that type is submit, not button)

Copy code
The code is as follows:

<html>
<head>
<title>Winbobo</title>
</head>
<body>
<div align="center">
<form action="google.php" method="get">
<input name="q" type="text"/>
</br>
<input name="btnSearch" type="submit" value="Search" />
</form>
</div>
</body>
</html>

The code of google.php is as follows: ($_GET is used to obtain the data passed by the form through the get method; $_POST is used to obtain the data passed by the form through the post method)

Copy code
The code is as follows:

<?php
print "<pre>";
print_r($_GET);
print "</pre>";
?>

The running results are shown in the figure:

<<:  Five guidelines to help you write maintainable CSS code

>>:  MySQL date and time addition and subtraction sample code

Recommend

Detailed explanation of using Vue custom tree control

This article shares with you how to use the Vue c...

Vue3 encapsulates its own paging component

This article example shares the specific code of ...

A brief discussion on the underlying principle of mysql join

Table of contents join algorithm The difference b...

A quick guide to Docker

Docker provides a way to automatically deploy sof...

Detailed tutorial on installing MariaDB on CentOS 8

MariaDB database management system is a branch of...

Detailed explanation of the correct way to install opencv on ubuntu

This article describes how to install opencv with...

Vue multi-page configuration details

Table of contents 1. The difference between multi...

JavaScript to achieve elastic navigation effect

This article shares the specific code for JavaScr...

How to reduce image size using Docker multi-stage build

This article describes how to use Docker's mu...

How to Change Colors and Themes in Vim on Linux

Vim is a text editor that we use very often in Li...

How to view the IP address of the Docker container

I always thought that Docker had no IP address. I...

How to install and configure WSL on Windows

What is WSL Quoting a passage from Baidu Encyclop...

MySQL merge and split by specified characters example tutorial

Preface Merging or splitting by specified charact...