SEO Packages

MySQL: The Database of Choice for the Masses

October 29, 2011EditorMySQL, Web DevelopmentComments Off

If you use MySQL, or are thinking about using it to power your website, you are in good company. MySQL is the world‚Äôs most popular open source database with over 8 million installations worldwide and continues to grow with 50,000 downloads per day. Read more →

Upgrading to ASP.Net 2? Why your website might stop working when you do

October 29, 2011EditorASP.Net, Web DevelopmentComments Off

Asp.Net version 2 was just recently released by Microsoft and contains a feature rich set of classes that can do just about anything imaginable. However if your thinking about hosting your asp.net 2 site on a shared hosting environment there are a few considerations you should know about before you take the plunge. Read more →

Optimizing Your Asp.Net Pages for Faster Loading and Better Performance

October 29, 2011EditorASP.Net, Web DevelopmentComments Off

If you read the internet and all of the websites dedicated to Asp.Net you will inevitably read about the wonders of the DataGrid, DataList, and Repeater controls. While each of these has its place, if you are only displaying data there is a much faster and more efficient means to do so. Read more →

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 →