Home > Article > Backend Development > 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['action']; echo "document.write('".$action."');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!