Home  >  Article  >  Backend Development  >  How to call php page from html

How to call php page from html

尚
Original
2019-10-31 10:37:174194browse

How to call php page from html

html itself cannot handle dynamic requests. To accomplish this, JavaScript is generally used. When generating a static web page, you can generate a corresponding JavaScript file reference for the HTML page based on the database ID.

You cannot directly call php files in static pages, but you can use js calling method to call php files, and you can also use ajax to call php files.

Give a simple example to illustrate: Use the following code in page a.html to pass the action=test parameter to b.php.

Javascript code is as follows:

<script type="text/javascript" src="b.php?action=test"></script> 
在b.php中有这样一段PHP代码:
<?php 
$action=$_GET[&#39;action&#39;];     
echo "document.write(&#39;".$action."&#39;);n";    
?>

Recommended:php server

The above is the detailed content of How to call php page from html. For more information, please follow other related articles on the PHP Chinese website!

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