// I need the following variables to list different dimensions for full size & thumbnail prints in portrait and landscape dimensions..
<?
$Fport = "width='366' height='550'";
$Fland = "width='550' height='366'";
$Tport = "width='107' height='160'";
$Tland = "width='160' height='107'";
?>
// Now I want to only specify this information once and have everything populate from there..
<?
$orient01 = "land";
$orient02 = "port";
$orient03 = "land";
$orient04 = "port";
?>
//Then tried to populate thumbs this way
<? echo $T{$orient01} ?>
<? echo $T{$orient02} ?>
<? echo $T{$orient03} ?>
<? echo $T{$orient04} ?>
//While trying to populate full size this way..
<? echo $F{$orient01} ?>
<? echo $F{$orient02} ?>
<? echo $F{$orient03} ?>
<? echo $F{$orient04} ?>
//It didn't work. Am I approaching this wrong? What am I missing?