im assuming the reason you were getting the line error on line 81 is the %>
try echo ' '; using single quotes so you can put double quotes around 30%
echo '<tr><td width="30%">';
and in my experience it is best to do default first
and if you are using functions dont do a default instead do something like this
if(isset($_variable_to_switch))
{
switch($variable_to_switch)
{
case 'a_case':
functionname();
break; case 'a_case_2':
somethingelse();
}
}
else {
defaut_stuff_here;
}
http://www.deadlydesigns.net <--- My Baby!