Basic PHP Includes PHP / Getting Started
Lets say you have a Web site with 10 or so pages, and you want to update the navigation. You don't want the hassle of updating every single page. That's where includes come in handy.
PHP Babysteps Tutorial PHP / Getting Started
PHP is a server-side scripting language for creating dynamic Web pages. It has a very elegant design, that is both easy to use and powerful. PHP stands for PHP: Hypertext Preprocessor. It is a server side, HTML embedded language like ASP, SSI etc.
PHP and Cookies PHP / Sessions and Cookies
Cookies have long been used in PHP scripts, and are a very useful function. But what exactly are cookies? Maybe you have used then, but you still don't know exactly what they are. Or you are completely new to cookies? It doesn't matter, because in this tutorial I will show you exactly what cookies are, and what they are used for.
Introduction to PHP Functions PHP / Functions
Functions are a very important part of PHP and it is probably safe to say that they are used in every single script. This tutorial will guide you through the basics of PHP functions to creating your own to do specific tasks.
Developing a Login System with PHP and MySQL PHP / Membership
Most interactive websites nowadays would require a user to log in into the website's system in order to provide a customized experience for the user. Once the user has logged in, the website will be able to provide a presentation that is tailored to the user's preferences.
HTACCESS Wrappers with PHP PHP / Navigation
HTACCESS is a remarkable tool you can use for password protection, error handling (like custom 404 pages), or HTTP redirects. It can also be used to transform whole folders in seconds: adding headers to all your HTML documents, watermarking all your images, and more.
Simple Solution for Php Includes - IFrames PHP / Navigation
I have recently created my first Php program. I wanted to share with others some of the problems that I encountered, and how I finally overcame these obstacles.
PHP Redirect PHP / Redirection
A PHP Redirect automatically transfers a web user from one URL to another. For example, typing foo.com in the browser automatically transfers the user to another URL bar.com.
Redirecting a Page using PHP PHP / Redirection
Redirecting a page in PHP is an easy task. You can use the PHP Header method to redirect a visitor to a new page. The header() method is used to send HTTP headers back to the browser. The headers can be sent back to the browser only if there's no content or error messages shown in the page.