Introduction to PHP In Arabic

Course

Online

£ 10 + VAT

Description

  • Type

    Course

  • Methodology

    Online

  • Start date

    Different dates available

  PHP (recursive acronym for PHP: Hypertext Preprocessor) or simplyPersonal Home PageIs open source general-purpose scripting language, that is especially suited for web development and can be embedded into HTML. This course will introduce PHP to you by examples. you will be familiar with scripting languages after 10 min of this course.If you interested in creating your own fully featured website, this course will take about 3 hours to be familiar with PHP dynamic scripting language.If you are web developer looking to learn a new language, this course is ideal for you.Steps we take:We will start by transferring your PC into a local Server, so you can run your PHP code without need to register in any web hosting service
learning PHP syntax will be easy by implementing each step and monitor its result
Apply PHP in simple interactive project This course will prepare you to make your own Content Management System or Dynamic websites functionalities

Facilities

Location

Start date

Online

Start date

Different dates availableEnrolment now open

About this course

By the end of this course you will have solid understanding of PHP scripting Language
Create dynamic web pages and let your website look smarter

Questions & Answers

Add your question

Our advisors and other users will be able to reply to you

Who would you like to address this question to?

Fill in your details to get a reply

We will only publish your name and question

Reviews

This centre's achievements

2021

All courses are up to date

The average rating is higher than 3.7

More than 50 reviews in the last 12 months

This centre has featured on Emagister for 4 years

Subjects

  • Dreamweaver
  • Web
  • MySQL
  • PHP
  • HTML
  • Apache
  • Server
  • Windows
  • Arabic

Course programme

Preparation 3 lectures 20:41 0 Download & Setup WAMP Server WAMP Acronym For:
  • Windows.
  • Apache.
  • MySQL.
  • PHP.
Download WAMP : 1 Basic Concepts Meaning of Scripting Language & server side scripting languages. 2 Connect Dreamweaver with WAMP server Basics Preparation 3 lectures 20:41 0 Download & Setup WAMP Server WAMP Acronym For:
  • Windows.
  • Apache.
  • MySQL.
  • PHP.
Download WAMP : 1 Basic Concepts Meaning of Scripting Language & server side scripting languages. 2 Connect Dreamweaver with WAMP server Basics 0 Download & Setup WAMP Server WAMP Acronym For:
  • Windows.
  • Apache.
  • MySQL.
  • PHP.
Download WAMP : 0 Download & Setup WAMP Server WAMP Acronym For:
  • Windows.
  • Apache.
  • MySQL.
  • PHP.
Download WAMP : 0 Download & Setup WAMP Server WAMP Acronym For:
  • Windows.
  • Apache.
  • MySQL.
  • PHP.
Download WAMP : 0 Download & Setup WAMP Server WAMP Acronym For:
  • Windows.
  • Apache.
  • MySQL.
  • PHP.
Download WAMP : Acronym For:
  • Windows.
  • Apache.
  • MySQL.
  • PHP.
Download WAMP : Acronym For:
  • Windows.
  • Apache.
  • MySQL.
  • PHP.
Download WAMP : 1 Basic Concepts Meaning of Scripting Language & server side scripting languages. 1 Basic Concepts Meaning of Scripting Language & server side scripting languages. 1 Basic Concepts Meaning of Scripting Language & server side scripting languages. 1 Basic Concepts Meaning of Scripting Language & server side scripting languages. Meaning of Scripting Language & server side scripting languages. Meaning of Scripting Language & server side scripting languages. 2 Connect Dreamweaver with WAMP server 2 Connect Dreamweaver with WAMP server 2 Connect Dreamweaver with WAMP server 2 Connect Dreamweaver with WAMP server Basics Basics Basics Basics Step Into PHP 3 lectures 17:07 3 Variables 4 PHP Internal Functions A 5 PHP Internal Functions B Step Into PHP 3 lectures 17:07 3 Variables 4 PHP Internal Functions A 5 PHP Internal Functions B 3 Variables 3 Variables 3 Variables 3 Variables 4 PHP Internal Functions A 4 PHP Internal Functions A 4 PHP Internal Functions A 4 PHP Internal Functions A 5 PHP Internal Functions B 5 PHP Internal Functions B 5 PHP Internal Functions B 5 PHP Internal Functions B PHP Arrays 3 lectures 17:02 6 Indexed Array 7 Associative Array <?php //indexed array $user=array("aly", "saad", array ( "php", "js" ,"jq" ) ); ?> <pre> <?php print_r($user);?> </pre> <hr /> <?php //associative array $x=array( "Name"=>"Saad", "Address"=>"Nacer City", "Email"=>"" ); ?> <pre> <?php print_r($x);?> </pre> <?php echo $x["Address"];?> 8 Array Functions <!DOCTYPE html> <html ><head> <title>Array Functions</title> </head><body><?php $associative=array( "C-name"=>"A-aly", "A-phone"=>"C-234423", "B-Address"=>"d-nacer city", "d-Address"=>"B-nacer city" ); ?> <p>count() - return the number of elements of an array.</p> <?php $elements= count($associative); echo $elements; ?> <table border="1"> <tr> <td><p>sort() - sort arrays in ascending order.</p> <?php sort($associative);?> <pre> <?php print_r($associative);?> </pre></td> <td><p>rsort() - sort arrays in descending order. </p> <?php rsort($associative);?> <pre> <?php print_r($associative);?> </pre></td> </tr> <tr> <td><p>asort() - sort associative arrays in ascending order, according to the value.</p> <?php asort($associative);?> <pre> <?php print_r($associative);?> </pre></td> <td><p>ksort() - sort associative arrays in ascending order, according </p> <?php ksort($associative);?> <pre> <?php print_r($associative);?> </pre></td> </tr> <tr> <td><p>arsort() - sort associative arrays in descending order, according to the value. </p> <?php arsort($associative);?> <pre> <?php print_r($associative);?> </pre></td> <td><p>krsort() - sort associative arrays in descending order, according to the key. </p> <?php krsort($associative);?> <pre> <?php print_r($associative);?> </pre></td> </tr> </table> </body> </html> PHP Arrays. 3 lectures 17:02 6 Indexed Array 7 Associative Array <?php //indexed array $user=array("aly", "saad", array ( "php", "js" ,"jq" ) ); ?> <pre> <?php print_r($user);?> </pre> <hr /> <?php //associative array $x=array( "Name"=>"Saad", "Address"=>"Nacer City", "Email"=>"" ); ?> <pre> <?php print_r($x);?> </pre> <?php echo $x["Address"];?> 8 Array Functions <!DOCTYPE html> <html ><head> <title>Array Functions</title> </head><body><?php $associative=array( "C-name"=>"A-aly", "A-phone"=>"C-234423", "B-Address"=>"d-nacer city", "d-Address"=>"B-nacer city" ); ?> <p>count() - return the number of elements of an array.</p> <?php $elements= count($associative); echo $elements; ?> <table border="1"> <tr> <td><p>sort() - sort arrays in ascending order.</p> <?php sort($associative);?> <pre> <?php print_r($associative);?> </pre></td> <td><p>rsort() - sort arrays in descending order. </p> <?php rsort($associative);?> <pre> <?php print_r($associative);?> </pre></td> </tr> <tr> <td><p>asort() - sort associative arrays in ascending order, according to the value.</p> <?php asort($associative);?> <pre> <?php print_r($associative);?> </pre></td> <td><p>ksort() - sort associative arrays in ascending order, according </p> <?php ksort($associative);?> <pre> <?php print_r($associative);?> </pre></td> </tr> <tr> <td><p>arsort() - sort associative arrays in descending order, according to the value. </p> <?php arsort($associative);?> <pre> <?php print_r($associative);?> </pre></td> <td><p>krsort() - sort associative arrays in descending order, according to the key. </p> <?php krsort($associative);?> <pre> <?php print_r($associative);?> </pre></td> </tr> </table> </body> </html> 6 Indexed Array 6 Indexed Array 6 Indexed Array 6 Indexed Array 7 Associative Array <?php //indexed array $user=array("aly", "saad", array ( "php", "js" ,"jq" ) ); ?> <pre> <?php print_r($user);?> </pre> <hr /> <?php //associative array $x=array( "Name"=>"Saad", "Address"=>"Nacer City", "Email"=>"" ); ?> <pre> <?php print_r($x);?> </pre> <?php echo $x["Address"];?> 7 Associative Array <?php //indexed array $user=array("aly", "saad", array ( "php", "js" ,"jq" ) ); ?> <pre> <?php print_r($user);?> </pre> <hr /> <?php //associative array $x=array( "Name"=>"Saad", "Address"=>"Nacer City", "Email"=>"" ); ?> <pre> <?php print_r($x);?> </pre> <?php echo $x["Address"];?> 7 Associative Array <?php //indexed array $user=array("aly", "saad", array ( "php", "js" ,"jq" ) ); ?> <pre> <?php print_r($user);?> </pre> <hr /> <?php //associative array $x=array( "Name"=>"Saad", "Address"=>"Nacer City", "Email"=>"" ); ?> <pre> <?php print_r($x);?> </pre> <?php echo $x["Address"];?> 7 Associative Array <?php //indexed array $user=array("aly", "saad", array ( "php", "js" ,"jq" ) ); ?> <pre> <?php print_r($user);?> </pre> <hr /> <?php //associative array $x=array( "Name"=>"Saad", "Address"=>"Nacer City", "Email"=>"" ); ?> <pre> <?php print_r($x);?> </pre> <?php echo $x["Address"];?> <?php //indexed array $user=array("aly", "saad", array ( "php", "js" ,"jq" ) ); ?> <pre> <?php print_r($user);?> </pre> <hr /> <?php //associative array $x=array( "Name"=>"Saad", "Address"=>"Nacer City", "Email"=>"" ); ?> <pre> <?php print_r($x);?> </pre> <?php echo $x["Address"];?> <?php //indexed array $user=array("aly", "saad", array ( "php", "js" ,"jq" ) ); ?> <pre> <?php print_r($user);?> </pre> <hr /> <?php //associative array $x=array( "Name"=>"Saad", "Address"=>"Nacer City", "Email"=>"" ); ?> <pre> <?php print_r($x);?> </pre> <?php echo $x["Address"];?> 8 Array Functions <!DOCTYPE html> <html ><head> <title>Array Functions</title> </head><body><?php $associative=array( "C-name"=>"A-aly", "A-phone"=>"C-234423", "B-Address"=>"d-nacer city", "d-Address"=>"B-nacer city" ); ?> <p>count() - return the number of elements of an array.</p> <?php $elements= count($associative); echo $elements; ?> <table border="1"> <tr> <td><p>sort() - sort arrays in ascending order.</p> <?php sort($associative);?> <pre> <?php print_r($associative);?> </pre></td> <td><p>rsort() - sort arrays in descending order. </p> <?php rsort($associative);?> <pre> <?php print_r($associative);?> </pre></td> </tr> <tr> <td><p>asort() - sort associative arrays in ascending order, according to the value ;!DOCTYPE html> <html ><head> <title>Array Functions</title> </head><body><?php $associative=array( "C-name"=>"A-aly", "A-phone"=>"C-234423", "B-Address"=>"d-nacer city", "d-Address"=>"B-nacer city" ); ?> <p>count() - return the number of elements of an...

Additional information

Familiar with Hyper Text Markup Language (HTML) This course is meant for TOTAL beginners in programming

Introduction to PHP In Arabic

£ 10 + VAT