Answers for "link a php page to html"

PHP
0

how to link external php file to html

/*You need to change that .html file to .php file. In this way, 
you can easily link one php file to another.*/


<html>
<body>

<h1>Welcome to my home page!</h1>
<p>Some text.</p>
<p>Some more text.</p>
<?php include 'footer.php';?>

</body>
</html>
Posted by: Guest on June-30-2021
1

link to another page php

echo ' <a href="index1.php">page1</a>';
echo '<a href="page2.php">page2</a>';
Posted by: Guest on March-10-2020
1

php link to page

header("Location: https://example.com");
Posted by: Guest on November-04-2020

Browse Popular Code Answers by Language