SEO Packages

Formmailer in PHP with required fields

October 29, 2011EditorPHP, Web DevelopmentComments Off

Ok, in this tutorial I’m going to show you how to write a formmailer with required fields in php. First off we need a form to use with this tutorial so use the code below and save it as form.php. Read more →

Php Redirect

October 29, 2011EditorPHP, Web DevelopmentComments Off

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.

The PHP Redirect command:

 <?php
 header("location: [some-url]");
 ?>

Replace [some-url] with the URL where you want the redirection to take place. Read more →

The Advantages of PHP

October 29, 2011EditorPHP, Web DevelopmentComments Off

PHP is one of the most popular server side scripting languages running today. It is used for creating dynamic webpages that interact with the user offering customized information. PHP offers many advantages; it is fast, stable, secure, easy to use and open source (free). Read more →

Is PHP Right For You?

October 29, 2011EditorPHP, Web DevelopmentComments Off

Since its development in the mid-90‚Äôs PHP has become an increasingly popular scripting language. If you‚Äôre involved in webpage design, it is nearly impossible to avoid discussion of PHP. You may be wondering if learning PHP is the right thing for you and your website. Read more →

Generating Web Pages with PHP

October 29, 2011EditorPHP, Web DevelopmentComments Off

PHP, or PHP: Hypertext Preprocessor, is a very simple programming language that turns the paradigm for dynamic web page creation inside out. While other dynamic scripting languages, like PERL, will have you create a web page and keep the scripts on the server outside the page, PHP has you integrate the script directly into the page.

Read more →