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 is used to add lists into <ul> and <ol> elements?
<dt> <dd> <li>
<ul>
 <li>http://coursesweb.net/html/</li>
 <li>http://coursesweb.net/css/</li>
</ul>
Which value of the "display" property creates a block box for the content and ads a bullet marker?
block list-item inline-block
.some_class {
  display: list-item;
}
Which instruction converts a JavaScript object into a JSON string.
JSON.parse() JSON.stringify eval()
var obj = {
 "courses": ["php", "javascript", "ajax"]
};
var jsonstr = JSON.stringify(obj);
alert(jsonstr);    // {"courses":["php","javascript","ajax"]}
Indicate the PHP class used to work with HTML and XML content in PHP.
stdClass PDO DOMDocument
$strhtml = '<body><div id="dv1">CoursesWeb.net</div></body>';
$dochtml = new DOMDocument();
$dochtml->loadHTML($strhtml);
$elm = $dochtml->getElementById("dv1");
echo $elm->nodeValue;    // CoursesWeb.net
Include and Require

Last accessed pages

  1. MouseEvent - Events for Mouse (2909)
  2. PHPMailer (2311)
  3. Uploading images to server with Ajax (6095)
  4. PHP OOP - Inheritance, class extends (5412)
  5. Refresh page if window width changes from a device size to other (1815)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (472)
  2. CSS cursor property - Custom Cursors (79)
  3. The Mastery of Love (70)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (62)
  5. CSS3 2D transforms (46)