In this tutorial you will be tought how to create your first PHP script using the famous hello world example.
If you are new to PHP programming, then check this out for your first simple lesson.
In this tutorial you will get the chance to learn how you can easily use variables in your PHP.
It teaches you the basics so it is very easy for you if you are a beginner. Easy explenations for how it works.
In this tutorial we will be discussing how if-statements and loops work, the types of loops we will be discussing are while, do while and for. Also we will show you an example of how you can implent this in your beginning site to make it more dynamic.
There are a lot of tutorials out there that tell you about some basic PHP stuff; however, none of them tell you how to take it to the next level. In this tutorial I explain how you can learn PHP quickly.
I ran into a lot of problems when i was first
learning PHP. It seemed that every book told
you how to do this, but never how to utilize
what you just learned. So, I will try and make
it a little more simple.
This is a solid introduction to using PHP's build-in directory handling functions. It includes code examples used to create an array of filenames based on a directory structure, and filtering out different types of files.
PHP, the PHP Hypertext Processor, is an open source server-side scripting language for Web servers, which provides a real alternative to ASP, ColdFusion, Mod_Perl or JSP if your aim is to provide dynamic Web pages. Dynamic Web pages are pages which interact with the user, so that each user visiting the page sees customized information - which may vary each time and which may be based on a form they've just filled in, or on information extracted from a database or some other external source. Typical applications include e-commerce, online newspapers, visitors' books, ticketing systems, project management, and other groupware projects. The traditional way to produce this type of dynamic page is via CGI scripts, but these are separate programs which must be executed as a new process for each page hit, so they scale badly and rapidly become memory and processor hogs as server load increases...
Learn how to make loops using while(), in this tutorial it include a sample showing you how to make it print the numbers 1 - 10 on seperate lines! its a good starting point for any beginner.
This is an introduction to the PHP web development language. Focuses on the "meat & potatoes" of the language, and assumes the user has little experience with web development languages.