Home Backend Development PHP Tutorial Implementation of dynamically extracting data from database in PHP entry page_PHP tutorial

Implementation of dynamically extracting data from database in PHP entry page_PHP tutorial

Jul 21, 2016 pm 04:03 PM
php web make dynamic exist accomplish submit extract Summary data database hour use of page

Summary: When using PHP to create a dynamic web page, before submitting it to the server, let PHP immediately retrieve the values ​​of other related fields from the database based on the value of a field entered by the user on the current page and display it on the current page. This is a PHP program. Difficulties in development. This article uses a specific example to introduce in detail how to cleverly combine the two HTML embedded languages ​​​​php and javascript to solve this difficulty.

Keywords: php, dynamic, html.

Nowadays websites have developed from providing static information to interactive ways of providing dynamic information services. The form of web information services can be summarized in two points: providing information to customers; and recording information submitted by customers. To provide these two services, the problems that need to be solved are: how to quickly allow users to quickly extract the information they want from the large amount of information on their own websites, and how to effectively record the information submitted by users to facilitate future user searches. These problems can be solved by adding database support to the website.

Because PHP can provide good support for a variety of databases, and the PHP script is directly embedded in the HTML document, it is very convenient to use. Therefore, PHP is one of the most popular server-side embedded languages ​​on the Internet. In addition, compared with other server-side scripting languages ​​such as ASP, PHP is free and open source and provides cross-platform support, which allows it to easily adapt to various heterogeneous network environments in today's networks; it allows web page producers to quickly , easily create powerful dynamic web pages. However, since PHP is embedded on the server side, a more intuitive understanding is that the PHP statement is executed on the server, so it only receives and processes the content on the current page when it is submitted. And when the content you need is dynamically extracted from the library based on the value of a field entered on the customer's current page, PHP is powerless. For example: you want to provide customers with an "Ordering Contract" entry page, which contains some "Supplier Information" entries, and the detailed information of each supplier has been entered in a "Merchant" dictionary table in advance. Now it is required that the current When a customer selects a "supplier" on the current page, some of the supplier's information such as "account opening bank, account number, address, phone number, etc." are immediately extracted from the "merchant" dictionary and displayed on the current page. For customers to use directly or modify. Such a requirement is easy to implement using visual programming languages ​​such as pb and vb, but pb and vb are not suitable for writing dynamic web pages; php is suitable for writing dynamic web pages, but due to server-side embedding, submission cannot be obtained in time The variable value on the previous page, so it is difficult to achieve the above requirements. During the programming process, I cleverly combined PHP with JavaScript to solve this difficulty.

We know that it is also an embedded statement, but javascript is different from php language. Because PHP is server-side embedding, and JavaScript is client-side embedding, both JavaScript statements are executed on the client's browser, which determines that JavaScript can obtain the variable values ​​​​on the current page in time, but it cannot directly operate the server-side database. . Therefore, combining the two to create powerful dynamic web pages is a perfect match. For the convenience of description, the following only takes the address of the selected supplier from the dictionary table as an example to illustrate the specific method. When multiple fields need to be taken out, the method is similar, but when using the javascript function to take out one by one from the string, you need to be more careful.

1. Write a php function

The function of this function is to take out all qualified "supplier information" from the "merchant" dictionary table and store it in a string variable $khsz.

function khqk_tq($questr){

global $dbconn;

$dbq_resl=sybase_query($questr,$dbconn); //Send a query string for sybase to execute .

$dbq_rows=sybase_num_rows($dbq_resl); //Get the number of rows returned.

$j=0;

for ($i=0;$i<$dbq_rows;$i++){ //Create a loop to take out the required fields from each row and put into the array $k[].

$k[]=sybase_result($dbq_resl,$i,"kh_id"); //Get the supplier number selected by the user.

$add=sybase_result($dbq_resl,$i,"address"); //Get the supplier address.

if ($add==""):

$k[]="None";

else :

$k[]= sybase_result($dbq_resl,$i,"address");

endif;

$khsz=$khsz.$k[$j]."|".$k[$j+ 1]."|"; //Connect each field value to the variable $khsz with "|" as the delimiter to form a long string.

$j=$j+2;

}

return $khsz;

}

2. Write a javascript function

The function of this function is to find the address of the supplier based on the kh_id value from the string and embed it into the html file.



3. Combine the two in html and use each other

$khinfo="select kh_id,address from kh where co_id=$s_coid and type='g' order by kh_id";

//Put the sql statement to obtain supplier information into the variable $khinfo.

$k=khqk_tq($khinfo); //Call the php function and put the returned string value into the variable $k.





Ordering Contract Management















;input name=htgs size=53>





Contract No.
Supplier< /td>

< /td> //Put all supplier names that meet the conditions into the drop-down list box for users to select. Where prt_sele is a custom php function. Address /The result of triggering the javascript function is that the address variable gets the value and is displayed on the page.

The system environment of the above code is: linux operating system, sybase database, web server is apache, php4 program interface. The above program development ideas that combine PHP and JavaScript have been successfully applied to multiple dynamic web pages we have developed.




http://www.bkjia.com/PHPjc/316299.html

www.bkjia.com

true

TechArticleAbstract: When using php to create dynamic web pages, before submitting to the server, let php enter according to the user on the current page The value of a certain field immediately retrieves the value of other related fields from the database...
Statement of this Website
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

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 ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles