WebRelatedStuff.com
Latest Articles
Basic PHP Form Processing
Have you been learning how to create and design web pages? You can create lists, tables, images and forms and make them look good with CSS. Do you wonder "what can I do with these forms?" Without some server-side program to handle the form processing, you are left with the option of setting the action to "mailto:someaddress@somehost.com" .
This tutorial will show how to create a generic form processor that will use PHP's mail() function to send the data submitted in the form in a more nicely formated manner to an email address you specify. This will help keep your email address away from 'bots' and allow you some limited error checking.
Create Your First Website
If you have ever wanted your own website, and are curious how to do it for yourself, or just dont want to pay someone else to do it for you, then you are in the right place. The mysteries of HTML (hyptertext markup language) and CSS (cascading style sheets) are soon to unravel before your very eyes.
Follow along with this article/ tutorial and by the end not only you will have your very own website with navigation, images and forms, but also a good start on understanding web site development.
Introduction to Smarty
There are many benefits to incorporating a template engine into your applications. Foremost is the seperation of "application logic" from "application presentation", enabling the separation of tasks between software developer and web-page designer in projects, keeping PHP code and HTML separate.
This article will guide you through an implementation and demonstration of using the Smarty Template Engine. The goal of this article is to give you a foundation of knowledge that will allow you to start implementing Smarty in your projects. If you are interested in learning more, please read along.
Restricted Users Areas with PHP
This article will show you how to create a user authentication and restriction system using PHP and MySQL. It will guide you through the entire process of creating a user registration and authentication system. This system will be easy to use and include in your websites pages, allowing you to restrict access to pages by including just a couple of lines at the begining on any page.
If you want to learn how to register users to your site and restrict the content of certain pages, or are just curious to see another way to carry it out, read along and enjoy the story!