Home Accessibility Courses Twitter The Mouth Facebook Resources Site Map About Us Contact
 
For 2023 (and 2024 ...) - we are now fully retired from IT training.
We have made many, many friends over 25 years of teaching about Python, Tcl, Perl, PHP, Lua, Java, C and C++ - and MySQL, Linux and Solaris/SunOS too. Our training notes are now very much out of date, but due to upward compatability most of our examples remain operational and even relevant ad you are welcome to make us if them "as seen" and at your own risk.

Lisa and I (Graham) now live in what was our training centre in Melksham - happy to meet with former delegates here - but do check ahead before coming round. We are far from inactive - rather, enjoying the times that we are retired but still healthy enough in mind and body to be active!

I am also active in many other area and still look after a lot of web sites - you can find an index ((here))
PHP revision ... by example.

It's a big step from a few lines of PHP in a website which flashed up "Message of the day" ... to a system which computes results and looks up data dynamically ... to a system which requires pages to be linked together into an application ... to a system which requires access to back end data feeds ... and to a system which requires test and development and deployment servers, requires data caches for high volume, and requires audit control on the various release levels maintained by a many-person team across a wider organisation. But as an underlying base, you'll still have the basic PHP syntax and concepts.

This coming week, I'm presenting a private course that looks at how many of those more advanced aspets are tackled within one particular organisation. For starters, though, there's a requirement to make sure that all my delegates are up to speed on the basics. So here are some revision points:

• PHP is an open source general-purpose server-side scripting language originally designed for Web development to produce dynamic Web pages.
• It can also be run in other environments such as stand alone though originator Rasmus Lerdorf says the priority on features is for web use.

• PHP originally stood for "Personal Home Pages" and ran on "A Patchy Server", but who's going to commit his business to products with such names?
• PHP is now the PHP Hypertext Protocol, usually running under the Apache httpd server.

Key coding attributes:

• operator and operand based language
• ; separate statements and { to } blocks of code (like C)
• dynamic variable typing and memory allocation (unlike C)

• variable names start with a sigil (a $ character) to say "this is a variable"
• Comments start with # or // to end of line, or /* to */
• Code runs within <?php to ?> tags - outside that, code is echoed to output
• classic while, if and for statements, assignments, tests, etc

First example, showing classic coding, [here].

• Collection variables in PHP are known as arrays, but are actually ordered maps.
• they can be treated as an array, list (vector), hash table (an implementation of a map), dictionary, stack, queue, etc.
• array values can be other arrays, so trees and multidimensional arrays are possible.
• Use squarebrackets for indexing into an array

Second example, with a demonstration of both indesed and keyed (associative) arrays - [here].

• functions are named blocks of code
• passing parameters in by position, optional and by name
• variables default to being local to function
• variables can be declared as global or static
• Also note superglobal variables such as $_POST

Third example, with functions, [here].

These examples - you'll see the links above - are also avaialable from the new year on our public Object Orientation in PHP and PHP Techniques courses. They help ensure, in just half an hour or so, that everyone's up to speed with the basics and that any little gaps in knowledge are identified and fixed for second level courses.

Part 2 of this revision session - covering Object Orientation in PHP - may be found [here].
(written 2012-12-15, updated 2012-12-22)

 
Associated topics are indexed as below, or enter http://melksh.am/nnnn for individual articles
H300 - PHP Revision
  [1615] PHP training courses every month - (2008-04-18)
  [1787] Howto - write and manage a news box on your web page - (2008-09-06)
  [2742] A simple server benchmark script - (2010-04-27)
  [3953] Objects in PHP - Revision - (2012-12-16)
  [4050] A couple of new fast-start PHP examples - (2013-03-21)

H050 - PHP - General
  [116] The next generation of programmer - (2004-11-13)
  [235] Preparation for a day's work - (2005-03-04)
  [1722] PHP examples - source code and try it out too - (2008-07-26)
  [2097] PHP Course - for hobby / club / charity users. - (2009-03-22)
  [2222] A (biased?) comparison of PHP courses in the UK - (2009-06-07)
  [2227] Learning PHP, Ruby, Lua and Python - upcoming courses - (2009-06-11)
  [2400] Are you wanting to learn PHP? - (2009-09-08)
  [2430] Not just a PHP program - a good web application - (2009-09-29)
  [2504] Learning to program in ... - (2009-11-15)
  [2559] Moving the product forward - ours, and MySQL, Perl, PHP and Python too - (2010-01-01)
  [2589] Your PHP code does not work? Here is where to start looking. - (2010-01-18)
  [2663] Improve your PHP on a weekend away - (2010-03-05)
  [3025] Learning to Program ... in PHP. Course examples. - (2010-11-01)
  [3530] A typical weekend?? - (2011-11-28)
  [3966] Our examples work with any recent version of PHP - (2013-01-01)
  [4314] PHP training - refreshed modern course, backed up by years of practical experience - (2014-11-16)


Back to
Christmas Bus Schedule for Melksham - First Bus
Previous and next
or
Horse's mouth home
Forward to
Objects in PHP - Revision
Some other Articles
Zend / layout of MVC and other files in an example application (PHP)
Building up from a small PHP setup to an enterprise one
Lesson 1 in programing - write clean, reuseable and maintainable tidy code
PHP revision ... by example.
Christmas Bus Schedule for Melksham - First Bus
10 reasons why I travel the night before a course starts
Melksham Spa from Woolmore Farm
Quiet little town? Advanced Technology Centre?
this or self - what are they, and what is the difference? (Python)
4759 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96 at 50 posts per page


This is a page archived from The Horse's Mouth at http://www.wellho.net/horse/ - the diary and writings of Graham Ellis. Every attempt was made to provide current information at the time the page was written, but things do move forward in our business - new software releases, price changes, new techniques. Please check back via our main site for current courses, prices, versions, etc - any mention of a price in "The Horse's Mouth" cannot be taken as an offer to supply at that price.

Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).

You can Add a comment or ranking to this page

© WELL HOUSE CONSULTANTS LTD., 2024: 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho

PAGE: http://www.wellho.net/mouth/3952_PHP ... mple-.html • PAGE BUILT: Sun Oct 11 16:07:41 2020 • BUILD SYSTEM: JelliaJamb