Php-mysql Course

A PHP script can be very simple or very complex. However, even writing a complex PHP script is relatively simple, requiring only an regular text editor. PHP code is plain text and can be created in any text editor, such as Notepad on Windows or TextEdit on Mac OS X. Anyway, it's indicated and more efficiently to use a dedicated script editor like Notepad++ or Eclipse.
PHP is a programming language that needs a server to run it. First, you must have installed a server, for example Apache and the PHP module. They are free, but for beginners is better to install an all-in-one packages free aplication, like WampServer (www.wampserver.com/en/) or XAMPP, that already has Apache, PHP, MySQL and phpMyAdmin included and configured.
You can get XAMPP from the page: Download XAMPP.

- Once you have installed XAMPP (WampServes or EasyPHP) aplication, you need to create your PHP files in a location where the web server can process them. Normally, this means that the files should be in the serve`s directory root or a subfolder of the document root. The default location of the document root for these aplications is as follows:

- Because PHP scripts need to be parsed by the server, you absolutely must access them via the URL. The URL for the web serve`s directory root in your local computer is http://localhost/.

1. Writing the structure of a PHP script

Every PHP script contains two special lines (or PHP tags) that indicate to PHP server that the text contained between the two tags must be parsed as PHP instructions. Between these two lines will be written the PHP code.
To start writing a PHP script, open your text editor and insert these two lines:
<?php
?>
- This is a start code and displays nothing.
You can save your script (with ANSI or UTF-8 format) in a text file with the ".php" extension, in the "htdocs" (for XAMPP) or "www" (for WampServer) folder, with a name that respect the following rules:

Any text outside of the PHP tags is immediately sent to the Web browser as regular HTML text.

2. Display output data in a Web browser

PHP scripts execute three basic operations:
Let`s write a simple PHP script that displays a text in the browser window. Open your text editor and add the fallowing code:
<?php
echo 'The text that appears in your browser.';
?>
Save the file with a name with the ".php" extension (for example "test1.php"), in the proper directory of your Web server, "xamp/htdocs/" (or "wamp/www/").
To see the result, access in the browser the fallowing address: http://localhost/test1.php
If everything is made correctly, the browser will displays "The text that appears in your browser.".
- Notice that the instruction begins with a word "echo" and ends with a semicolon (;).
Each code line in PHP must end with a semicolon (;), it is used to distinguish one set of instructions from another.
The "echo" statement sends output data to be displayed in the browser (There are two basic statements to output text with PHP: echo and print.).
Simple (or double) quotes are used to delimit strings (a text expression), in our case 'The text that appears in your browser.'.

• PHP is an HTML-embedded scripting language. This means that you can combine (intermingle) PHP and HTML code within the same file. Also, PHP can generate (X)HTML code.
For example, here is a PHP script that outputs a HTML code and it's placed inside a HTML document, in the BODY section.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Test 2 PHP</title>
</head>
<body>
<?php
echo "<h4>Example of a PHP scripts included in HTML</h4>";
?>
</body>
</html>
- If you save this code in a ".php" file (for example, "test_html.php"), in the server's directory root, and access it in your browser (http://localhost/test_html.php), you'll see in the Web browser the fallowing result:

Example of a PHP scripts included in HTML


You can embed multiple blocks of PHP code within a single HTML page, anywhere in the documen. For example:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>
<?php
echo 'Page title';
?>
</title>
</head>
<body>
<?php
echo '<div>Free PHP-MySQL course: https://coursesweb.net/php-mysql/</div>';
?>
</body>
</html>

3. Writing Comments

A secondary but still important aspect to any programming is documenting your code.
In PHP, you can use // to make a single-line comment or /* and */ for multiline comment block.
  - Example:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Comment PHP</title>
</head>
<body>
<?php
// This is an one-line comment

echo '<h3>coursesweb.net</h3>';

/*
This is
a multiline
comment block
*/
?>
</body>
</html>

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which meta tag provides a short description of the page?
<meta content="..."> <meta description="..."> <meta http-equiv="...">
<meta name="description" content="70-160 characters that describes the content of the page" />
Which CSS property is used to stop the wrapping effect of the "float"?
clear text-align position
#some_id {
  clear: both;
}
Click on the method which gets an array with all the elements in the document that have a specified tag name.
getElementsByName() getElementById() getElementsByTagName()
var divs = document.getElementsByTagName("div");
var nr_divs = divs.length;
alert(nr_divs);
Indicate the PHP function which returns the number of elements in array.
is_[) count() strlen()
$arr =[7, 8, "abc", 10);
$nri = count($arr);
echo $nri;        // 4
Writing PHP scripts

Last accessed pages

  1. CSS Trapezoid Shape (11313)
  2. Get Attribute (ID, Class, Name, Title, Src) with jQuery (74439)
  3. Node.js Move and Copy file (28290)
  4. AJAX with POST and PHP (18849)
  5. JQZoom Image Magnifier (12975)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (201)
  2. Read Excel file data in PHP - PhpExcelReader (66)
  3. The Mastery of Love (56)
  4. PHP Unzipper - Extract Zip, Rar Archives (51)
  5. Working with MySQL Database (34)
Chat
Chat or leave a message for the other users
Full screenInchide