View Single Post
Old 07-24-2005, 09:24 PM   #6 (permalink)
Calzinger
Calzinger's Avatar
 
Beer

Join Date: Apr 2005

Location: New York

Posts: 565

Calzinger is on a distinguished road

Send a message via AIM to Calzinger
Default

The quickest way is to use javascript.
Code:
<script language="JavaScript1.4" type="text/javascript">
window.location = "http://www.google.com";
</script>
If you have PHP, use header()
Code:
<?php
header( "Location: http://www.google.com/" );
?>

__________________
Calzinger is offline