View Single Post
Old 01-20-2004   #7 (permalink)
Order
Local Biorust Beast
 
Order's Avatar
 
Join Date: Oct 2003
Location: San Diego, CA, USA
Posts: 2,253

Send a message via AIM to Order Send a message via MSN to Order Send a message via Yahoo to Order
It would be possible yes.. something like this.

PHP Code:
<?php

   
if(!$_GET['color'])
   {
     
$color "blue";
   }
   else
   {
     
$color $_GET['color'];
   }

?>

<img src="http://www.www.www/images/<? echo $color?>_01.gif">
It would work, but would be a little limited unless you expanded it quite a bit. Also, you could even set a cookie to remember it for when people come back. I would personally use the one I stated above, as it would be more versitile (It would allow completely different interfaces totally), however, this would work also.
__________________
Order is offline