Попробовал переправить и не работает. Мож кто подскажет почему?
Было:
// Select box
$rated .= "
$lang[yrate] ";
$options = array("$excellent", "$good", "$fair", "$poor", "$useless");
$rated .= "\\n";
$rated .= "\\n";
$rated .= "\\n";
$rated .= "
\\n";
Стало:
// Select box
$options = array("$excellent", "$good", "$fair", "$poor", "$useless");
$rated .= "\\n";
$rated .= "\\n";
for ($i = 0; $i < count($options); $i++) { $this_rate = 5-$i;
$rated .= " $options[$i]\\n";
}