| | |
PHP Tutorial Part One: Getting Started with PHP
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
Programming in PHP is fun and easy. It is a very powerful scripting language that takes simple HTML and turns it into a fully-interactive experience for the web user. Let's get started!
Note: These tutorials assume that you have a working web server that's capable of displaying PHP code and that you have PHP installed on that web server system or that you're using a server that is equipped and ready.
You can run PHP on Windows. You can even use PHP with IIS (The Windows Web Server) so you don't necessarily need Unix/Linux and Apache.
PHP Reference
Your best reference for all things PHP is the PHP web site: www.php.net. Go there and bookmark it--you'll refer to it often.
PHP Speaks HTML
The first thing you have to learn and always remember is that if you use even one line of PHP code in an HTML file, you must name the file with a .php extension. The .php extension tells the web server that this file is special and needs special handling by the PHP executable and related libraries.
Delimit Your PHP
Second, all PHP functions and code must be inserted between the following delimiters --the less than question mark opens the code and the question mark greater than close. You must always use delimiters in pairs--an opening delimiter and closing delimiter. Delimiters are symbols that tell the web server what kind of content follows and how it should be handled. HTML uses delimiters too .
Example 1: How About a Date?
If you want to add the current date to a web page, the code would look like:
Explanation: The 'echo' command tells the PHP program to echo the results that follow to the screen. Since you're using HTML and the browser is your "screen", that's where you see the results. The date function is a built-in PHP program that display the date in the format you specify in the parentheses.
Save the file with the filename, test.php.
Open the file by pointing your browser to the file on the webserver and you should see:
Jan-19-2009 (you'll see the current date)
Try changing the date format by moving things around ("d-M-Y") or just using one of the date variables ("Y"). Refer to the PHP documentation to get a full range of date variables. It's fun and useful.
The full list of PHP date-related functions are here.
Example 2: Who's Looking at You, Kid?
If you want to gather some info about the people that are looking at your site or if you just want to let them know you're watching, you can easily echo some of their information back to them by using what's known as Server Variables.
Note: This is not personal information, nor are you stealing anything from them. It is information that is transferred to your website when a visitor connects to your webpages.
You can get their IP Address and their Browser and Computer information. The IP Address is how computers communicate with each other on the Internet--think of it as kind of like a phone number or home address.
To see this information, edit your test.php file again and enter the following:
Explanation: The line is HTML for start a new Paragraph. The next line, sends the text, "Your IP Address is " to your browser. The dot (.) is PHP for concatenate or connect these two things. $SERVER['REMOTE_ADDR'] is a built-in Server variable that echoes the viewing browser's IP Address to their browser.
Save this file and point your browser to test.php.
You should see:
Jan-19-2009 (Current Date)
Your IP Address is 10.0.1.200 (The IP Address of Your Computer)
There are several variables from which to choose here. The complete list is located at: PHP:$_SERVER.
Change the Server variable or add new ones. For starters, try: HTTP_USER_AGENT to see your browser and computer information.
Stay tuned for PHP Tutorial Part Two: Combining HTML and PHP where you'll get a taste of how to integrate these two languages in a more elegant fashion. Don't worry, it's easy and you'll like the way it works. It's easier to read and more fun to write.
Note: These tutorials assume that you have a working web server that's capable of displaying PHP code and that you have PHP installed on that web server system or that you're using a server that is equipped and ready.
You can run PHP on Windows. You can even use PHP with IIS (The Windows Web Server) so you don't necessarily need Unix/Linux and Apache.
PHP Reference
Your best reference for all things PHP is the PHP web site: www.php.net. Go there and bookmark it--you'll refer to it often.
PHP Speaks HTML
The first thing you have to learn and always remember is that if you use even one line of PHP code in an HTML file, you must name the file with a .php extension. The .php extension tells the web server that this file is special and needs special handling by the PHP executable and related libraries.
Delimit Your PHP
Second, all PHP functions and code must be inserted between the following delimiters
PHP Syntax (Toggle Plain Text)
<? php code ?>
PHP Syntax (Toggle Plain Text)
<TAG>
Example 1: How About a Date?
If you want to add the current date to a web page, the code would look like:
PHP Syntax (Toggle Plain Text)
<HTML><BODY> <? echo date("M-d-Y"); ?> </BODY></HTML>
Explanation: The 'echo' command tells the PHP program to echo the results that follow to the screen. Since you're using HTML and the browser is your "screen", that's where you see the results. The date function is a built-in PHP program that display the date in the format you specify in the parentheses.
Save the file with the filename, test.php.
Open the file by pointing your browser to the file on the webserver and you should see:
Jan-19-2009 (you'll see the current date)
Try changing the date format by moving things around ("d-M-Y") or just using one of the date variables ("Y"). Refer to the PHP documentation to get a full range of date variables. It's fun and useful.
The full list of PHP date-related functions are here.
Example 2: Who's Looking at You, Kid?
If you want to gather some info about the people that are looking at your site or if you just want to let them know you're watching, you can easily echo some of their information back to them by using what's known as Server Variables.
Note: This is not personal information, nor are you stealing anything from them. It is information that is transferred to your website when a visitor connects to your webpages.
You can get their IP Address and their Browser and Computer information. The IP Address is how computers communicate with each other on the Internet--think of it as kind of like a phone number or home address.
To see this information, edit your test.php file again and enter the following:
PHP Syntax (Toggle Plain Text)
<HTML><BODY> <? echo date("M-d-Y"); echo "<P>"; echo "Your IP Address is " . $_SERVER['REMOTE_ADDR']; ?> </BODY></HTML>
Explanation: The line
PHP Syntax (Toggle Plain Text)
echo "<P>";
PHP Syntax (Toggle Plain Text)
echo "Your IP Address is " . $_SERVER['REMOTE_ADDR'];
Save this file and point your browser to test.php.
You should see:
Jan-19-2009 (Current Date)
Your IP Address is 10.0.1.200 (The IP Address of Your Computer)
There are several variables from which to choose here. The complete list is located at: PHP:$_SERVER.
Change the Server variable or add new ones. For starters, try: HTTP_USER_AGENT to see your browser and computer information.
Stay tuned for PHP Tutorial Part Two: Combining HTML and PHP where you'll get a taste of how to integrate these two languages in a more elegant fashion. Don't worry, it's easy and you'll like the way it works. It's easier to read and more fun to write.
0
•
•
•
•
I'm going to have to go ahead and disagree with all of the code. Never use short tags in production. You can never know if the server you're going to move code to has short_tags enabled or not. It also makes it easier to separate code from HTML in templates.
0
•
•
•
•
In addition to the XHTML comment, tags need to be closed properly. And is this really the place for yet another PHP tutorial? There are some really great ones out there already.
0
•
•
•
•
And there should only be one brand of gasoline, cracker, printer, car, etc.
This is an intro tutorial that is supposed to be placed in the tutorial section and not here. Sorry for the intrusion.
This is an intro tutorial that is supposed to be placed in the tutorial section and not here. Sorry for the intrusion.
0
•
•
•
•
Before the tutorials section had lots of poor tutorials so now we ask they are posted here first, then you PM a moderator and if they like it, they will see about putting it in the Tutorials Section.
0
•
•
•
•
I like the minimalist PHP in this tutorial and I have to somewhat disagree with the posters who commented more on the HTML syntax than the php. It is a tutorial on PHP and not HTML. Someone who is learning PHP probably shouldn't be too nit picking there and focus on the subject at hand.
On the other hand - this might be just a bit TOO minimalist and part two needs a whole lot more substance. I am a perl programmer with a minimal familiarity with PHP and it took me only a few minutes to not only read the whole thing but to understand the basic concepts of embedded scripting. I wil check back and look at part two when it comes out.
On the other hand - this might be just a bit TOO minimalist and part two needs a whole lot more substance. I am a perl programmer with a minimal familiarity with PHP and it took me only a few minutes to not only read the whole thing but to understand the basic concepts of embedded scripting. I wil check back and look at part two when it comes out.
0
•
•
•
•
•
•
•
•
I like the minimalist PHP in this tutorial and I have to somewhat disagree with the posters who commented more on the HTML syntax than the php. It is a tutorial on PHP and not HTML. Someone who is learning PHP probably shouldn't be too nit picking there and focus on the subject at hand.
On the other hand - this might be just a bit TOO minimalist and part two needs a whole lot more substance. I am a perl programmer with a minimal familiarity with PHP and it took me only a few minutes to not only read the whole thing but to understand the basic concepts of embedded scripting. I wil check back and look at part two when it comes out.
| Thread Tools | Search this Thread |
301 access apache api array beginner binary broken cakephp checkbox class clean cms code compression countingeverycharactersfromastring crack cron curl database date decode directory display dissertation dropdown dynamic echo email error fairness file files folder form forms function functions google href htaccess html httppost image include insert integration ip javascript joomla limit link login mail match md5 menu methods mlm multiple mysql newsletters oop pageing pagerank paypal pdf php problem protocol query radio random recursion remote script search secure server sessions simple sms soap source space spam sql syntax system table tutorial update upload url validator variable video votedown web youtube



