Home > Article > Backend Development > About the PHP include page
I have a page a.php, and then put b.php in it. Use the following statement . Now there is dynamic content in b.php, for example, I want to read it from the database. How can we achieve this layout by taking a record and displaying it?
I know it can be achieved using ajax in b.php, but besides this method, is there any other way?
Thank you all heroes!
I have a page a.php, and then put b.php in it. Use the following statement . Now there is dynamic content in b.php, for example, I want to read it from the database. How can we achieve this layout by taking a record and displaying it?
I know it can be achieved using ajax in b.php, but besides this method, is there any other way?
Thank you all heroes!
Use the return statement in b.php to return the record read from the database, and then use <?php $list = include 'b.php';?>
on the a.php page to obtain this record; finally, in Just display this $list on the page.
In addition, your intention is unclear, and I don’t know if you want to implement this function.