| TOTAL: 12 Page: 1 of 1 |
|
A simple tutorial
Here we would like to show the very basics of PHP in a short, simple tutorial. This text only deals with dynamic web page creation with PHP, though PHP is not only capable of creating web pages.

| Hits: | 297 | Platforms: | Windows |
| Ratings: | Last Updated: | 2009-06-04 |
Logic Flow
Controlling the flow of logic is a fundamental part of any program, including a PHP script, but what does the phrase actually mean? Logic flow refers to the decision making process whereby you choose which actions to take under which circumstances.

| Hits: | 53 | Platforms: | Windows |
| Ratings: | Last Updated: | 2009-06-03 |
PHP Commenting
The PHP comment syntax always begins with a special character sequence and all text that appears between the start of the comment and the end will be ignored by the browser. PHP’s comments will not be displayed to your visitors when they visit the your page. The only way to view PHP comments is to open the PHP file for editing. This makes PHP comments only useful to PHP programmers.

| Hits: | 24 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2009-06-03 |
Using old code with new versions of PHP
Now that PHP has grown to be a popular scripting language, there are a lot of public repositories and libraries containing code you can reuse. The PHP developers have largely tried to preserve backwards compatibility, so a script written for an older version will run (ideally) without changes in a newer version of PHP. In practice, some changes will usually be needed.

| Hits: | 16 | Platforms: | Windows |
| Ratings: | Last Updated: | 2009-06-03 |
LearnPHPFree.com Lesson 10 - Review
Learn PHP 100% Free! - Lots of Tutorials, Lessons, and Free Scripts to teach you PHP from scratch! The perfect place for beginners! Also covers HTML, CSS, Apache, Photoshop, and others.

| Hits: | 300 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
LearnPHPFree.com Lesson 6 - Simple Script
"Any PHP script is built out of a series of statements. A statement can be an assignment, a function call, a loop, a conditional statement of even a statement that does nothing (an empty statement). Statements usually end with a semicolon. In addition, statements can be grouped into a statement-group by encapsulating a group of statements with curly braces. A statement-group is a statement by itself as well. The if construct is one of the most important features of many languages, PHP include

| Hits: | 128 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
LearnPHPFree.com Lesson 4 - First PHP File
When you make a PHP file you have to name it "test.php" just like microsoft word documents are named "test.doc" and some images are "image.jpg". If you don't name a file "something.php" (not really "something", just give it a name) - the PHP core won't process it, and it won't work. Once you are finished typing the text above, select "file", "Save as" and name it "test.php" with the quotes. By naming a file with quotes you are telling the computer not to name it something ".txt". For example,

| Hits: | 144 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
LearnPHPFree.com Lesson 2 - PHP Code, what is it?
If you visited the link in the last lesson you probably already know how to tell PHP code and how to comment it. Never the less, I want to make sure and go over it just so that no one is confused. Everything between the opening "" tags is sent to the PHP core to be processed, then the result is sent back. and the rest of the page continues to load.

| Hits: | 80 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
LearnPHPFree.com Lesson 1 - Intro to PHP
PHP was created in 1995 by an independent software developer named Rasmus Lerdorf. His first PHP script was a Perl/CGI program that kept a log of each visitor that came to his site. The script then displayed how many visits he had received on each page. He soon started receiving emails from other web masters across the Internet asking how he did this (a "Counter" as this is called, were very rare back then.) Because of the interest in his script he started to develop PHP into a new language, by

| Hits: | 98 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
Mastering the "if" Statement and it's Operators
The "==" operator means "equal to" This would output "they are the same", since neither of the variables have been defined and have the value of null. The "===" operator means "exactly equal to" This would output "they are not exactly the same", since Abc does not exactly equal abc The "!=" operator means "not equal too" This would output "they are not the same", since one does not equal two] The "!==" operator means "not exactly equal to" This would output "they are not exactly the same"

| Hits: | 83 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
PHP Basic Math - Learn math in php. Usefull for point systems
1. Adding two variables The most basic part of PHP is the variables. In PHP, before you write the name of the variable, you add a dollar sign ($) to tell PHP that it’s a variable. So choose numbers that you want to add. I will use 5 and 5. Now lets declare these two variables. I will name them n1 and n2. 2. Subtracting two variables Basically the same thing as adding, but just change the sign to 3. Multiplying two variables Basically the same thing as adding, but just change the

| Hits: | 69 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
Echo Certain Part - Useful PHP code to echo a certain part of a string
This tutorial will tell you about a very useful PHP script to echo a certain part of a string, usually used for echoing a part off a site. What to do... Say your string was '1 2 3 4 5' and you wanted to echo '3', you'd start your script like this $string = "1 2 3 4 5"; eregi('1 2 (.*) 4 5', $string, $result); As you can see, the (.*) indicates what you want to echo, and $result is the variable for it, so end with this... echo ("I can count to $result[1]");

| Hits: | 92 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
Quick Number Tip - Making number formats like 0001 or 0002
In this tutorial we'll make number format like 0001, 0002, 0003 in stead of 1, 2 ,3. It's very easy to do this .

| Hits: | 145 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
Introduction to PHP and MySQL and learn about WAMPserver
PHP is the programming language of the web it’s a fact the php is used on more webservers servers than any other web language. At the time of writing php is installed on just under than 24,000,000 Domains. For a more detailed introduction to php try the link. MYSQL is a commercial grade database application that is made available free under the Open Source to anyone. It’s had over 6 million installs ranging from large muli-national corporations to specialized embedded applications the web

| Hits: | 169 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
Learn PHP Basics - A Complete look at Basic PHP Functionality
the echo is what it will show in your browser! code 2: now we will do something a little trickier but not much! This code tells php that if the variables (The $ sign means it will be a variable) are $lang == 1 to show Hello World! so in the browser you would type index.php?lang=1 code 3: now this is a very useful in php if you dont always want to keep puting new pages on the web you can make a whole bunch of pages in just one file! Ok now we start writing the script, I will wright t

| Hits: | 87 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
PHP Basics - How to Echo Text
Just a quick note to let all users be aware that our forums will no longer be accepting automated registrations from users with email addresses in the region of "Russia" (ie users whos email domain ends in ".ru") and also the site Cashette.com has now been added to the ban list. The reason for this drastic step is due to the recent large scale of spam bots which are joining the forums (most cant get past the validation part) and trying to exploit it and/or spam the forums. If this affects you

| Hits: | 44 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |