By BoLOBOSE payday loan

Creating a Multi-Page Site From One Page Using GET

Creating a Multi-Page Site From One Page Using GET from Caleb Jonasson on Vimeo.

Source Code

Download Zip File

1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
 
$t = $_GET['t'];
 
if($t == 'contact'){
	echo 'contact page';
}else if($t == 'about'){
	echo 'about page';
}else{
	echo 'index page';
	echo '<br> <a href="?t=about">about</a>';
}
?>

Using Sessions To Handle Errors With PHP

Here is a 10 minute video tutorial that is all about handling errors with sessions. It will teach you how to use three simple functions to set and display error messages for your PHP website or application.

Using sessions to handle errors in php from Caleb Jonasson on Vimeo.

Sorry about the styling error, apparently I cannot type.

Demo

Download Source Files

Recycle pages by splitting your website into pieces with PHP

Recycle pages by splitting your website into pieces with PHP from Calebj on Vimeo.

Edit: Tuesday December 28th 2010, 9:11pm

I have just uploaded the archived end result at a comments request. You can download it here: Recycle_pages_code_with_design.zip