Php-mysql Course

Once you have created a script or an HTML content that you want to use in multiple pages is best stored in an external file and included in each page you want to use it. This is accomplished with the include and require functions.
PHP has four commands that can be used to include code from an external file:

To include an external file, you pass the file path to one of these four include functions as a string (single or double quotes).
  - Syntax:
include('external_file.php');
    OR
require('external_file.php');

The file path can be either absolute or relative to the current document.
  - An absolute path says where a file is starting from the root directory of the computer.
<?php
include('C:/xampp/htdocs/includes/file.php');            // windows
include('/usr/MAMP/htdocs/includes/file.php');           // unix (linux)
?>

  - A relative path uses the position of the current script file as the starting point. To move back one folder, use two periods together followed by a slash (../).
<?php
include('file.php');                   // "file.php" is in the curent script directory
include('../includes/file.php');       // "file.php" is in the "includes" folder, which is in the back directory
?>

For example, if you have a standard header and menu files (in a "templ" directory located in the curent folder), called "header.php" and "menu.php", that should be used on all pages. To include these files in a PHP script, use the include() (or require() ) function:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
 <title>Title page</title>
<body>

<?php include('templ/header.php'); ?>

<div id="menu">
<?php include('templ/menu.php'); ?>
</div>

<div id="content">some content</div>

</body>
</html>
With this method you can insert the same header and menu code in any PHP files in the Web site, all pages in the Web site can include the code of the header and menu files, and if you need to update the header or the menu later, you will only need to make changes in the "header.php" or "menu.php" file.

Using parentheses with the include commands is optional, the following would also work:
                include 'includes/file.php';
                include '/usr/MAMP/htdocs/includes/file.php';

When using a relative file path, you can use use "./" to indicate that the path begins in the current folder. Example:
                include('./includes/file.php');

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag defines the clickable areas inside the image map?
<map> <img> <area>
<img src="image.jpg" usemap="#map1">
<map name="map1">
  <area shape="rect" coords="9, 120, 56, 149" href="#">
  <area shape="rect" coords="100, 200, 156, 249" href="#">
</map>
Which CSS property defines what is done if the content in a box is too big for its defined space?
display overflow position
#id {
  overflow: auto;
}
Click on the event which is triggered when the mouse is positioned over an object.
onclick onmouseover onmouseout
document.getElementById("id").onmouseover = function(){
  document.write("Have Good Life");
}
Indicate the PHP variable that contains data added in URL address after the "?" character.
$_SESSION $_GET $_POST
if(isset($_GET["id"])) {
  echo $_GET["id"];
}
Include and Require

Last accessed pages

  1. Define and Use Classes in JavaScript (780)
  2. PHP Method Chaining (5417)
  3. Detecting events in ActionScript 3 (1397)
  4. Get the value of the selected /checked checkboxes in a form (44758)
  5. Output or Force Download MP3 with PHP (5755)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (496)
  2. PHP-MySQL free course, online tutorials PHP MySQL code (91)
  3. Read Excel file data in PHP - PhpExcelReader (55)
  4. The Mastery of Love (43)
  5. The Fifth Agreement (42)