How to connect two php pages

I just converted some of my HTML pages to PHP pages, and I'm not that familiar with PHP. In my HTML pages, assuming it's just a static web app, I can link to another page quite simply by playing the following anchor on the page:

This is a link

So, after converting the pages to PHP in order to make sure that I can template and include templates a bit easier and faster, I don't know how to include these links.

For example, say I have two pages, index.php, and page2.php. How would I create an anchor link to this page?

This is a link

PHP Include Files


The include (or require) statement takes all the text/code/markup that exists in the specified file and copies it into the file that uses the include statement.

Including files is very useful when you want to include the same PHP, HTML, or text on multiple pages of a website.


PHP include and require Statements

It is possible to insert the content of one PHP file into another PHP file (before the server executes it), with the include or require statement.

The include and require statements are identical, except upon failure:

  • require will produce a fatal error (E_COMPILE_ERROR) and stop the script
  • include will only produce a warning (E_WARNING) and the script will continue

So, if you want the execution to go on and show users the output, even if the include file is missing, use the include statement. Otherwise, in case of FrameWork, CMS, or a complex PHP application coding, always use the require statement to include a key file to the flow of execution. This will help avoid compromising your application's security and integrity, just in-case one key file is accidentally missing.

Including files saves a lot of work. This means that you can create a standard header, footer, or menu file for all your web pages. Then, when the header needs to be updated, you can only update the header include file.

Syntax

include 'filename';

or

require 'filename';


PHP include Examples

Example 1

Assume we have a standard footer file called "footer.php", that looks like this:

echo "

Copyright © 1999-" . date("Y") . " W3Schools.com

";
?>

To include the footer file in a page, use the include statement:

Example


Welcome to my home page!


Some text.


Some more text.



Run example »



Example 2

Assume we have a standard menu file called "menu.php":

echo 'Home -
HTML Tutorial -
CSS Tutorial -
JavaScript Tutorial -
PHP Tutorial';
?>

All pages in the Web site should use this menu file. Here is how it can be done (we are using a

element so that the menu easily can be styled with CSS later):

Example


Welcome to my home page!


Some text.


Some more text.


Run example »


Example 3

Assume we have a file called "vars.php", with some variables defined:

$color='red';
$car='BMW';
?>

Then, if we include the "vars.php" file, the variables can be used in the calling file:

Example


Welcome to my home page!


echo "I have a $color $car.";
?>


Run example »


The require statement is also used to include a file into the PHP code.

However, there is one big difference between include and require; when a file is included with the include statement and PHP cannot find it, the script will continue to execute:

Example


Welcome to my home page!


echo "I have a $color $car.";
?>


Run example »

If we do the same example using the require statement, the echo statement will not be executed because the script execution dies after the require statement returned a fatal error:

Example


Welcome to my home page!


echo "I have a $color $car.";
?>


Run example »

Use require when the file is required by the application.

Use include when the file is not required and application should continue when file is not found.


PHP Exercises



PHP link() Function $target = "text. txt"; $linkname = "mylink"; link($target, $linkname);

How automatically redirect to another page in PHP?

PHP 301 Redirect To set a permanent PHP redirect, you can use the status code 301. Because this code indicates an indefinite redirection, the browser automatically redirects the user using the old URL to the new page address.
1) Link External PHP file to HTML by changing File Extension.
include(" name of external PHP file you want to connect ");.
require(" name of external PHP file you want to connect ");.
AddType application/x-httpd-php .html..
include(" name of external PHP file you want to connect ");.

How do I run PHP and HTML together?

Step 1: Firstly, we have to type the Html code in any text editor or open the existing Html file in the text editor in which we want to use the PHP. Step 2: Now, we have to place the cursor in any tag of the tag where we want to add the code of PHP. And, then we have to type the start and end tag of PHP.