ooo... just ran into a problem.... I use variables1.php in this page twice. It displays everything wherever the include statement is, not where I want now....
It uses the same variable to determine where 2 different things should be placed. the first is:
switch ($getMsgR) {
case 'small':
$m = 0;
$i = 0;
break;
case 'medium':
$m = 0;
$i = 1;
break;
case 'large':
$m = 0;
$i = 2;
break;
case 'super':
$m = 0;
$i = 3;
}
the second is
switch ($getMsgR) {
case 'small':
$m = 2;
$k = 0;
break;
case 'medium':
$m = 2;
$k = 1;
break;
case 'large':
$m = 2;
$k = 2;
break;
case 'super':
$m = 2;
$k = 3;
}
and instead of printing the information in the place I want it/ where the code is, it prints on the page wherever the include statement is located.... Any ideas?
Nico