


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
$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.

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

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

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

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

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

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

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

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


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

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
