Molim Vas da mi kazete sta ne valja !? Pravim neki malo komplikovaniji sajt i izgleda da mi se mozak zamutio koliko ga dugo radim
if (trim($resuls[3]) == "synth")
{
echo 'checked="checked"';
}
else
{
echo trim($results[3]);
}
zashto mi stalno ehuje "synth" !? zar ne bi trebalo da prodje if zagrada kao true ? ovo je inace test jer imam neku radio button grupu i onda treba da ako je aranzer selektuje aranzer, a ako sintisajzer, onda njega, pravi kod :
<label>
<input type="radio" name="scategory" value="synth" id="scategory_0" <?php
if ($resuls[3] == "synth" && id != "" && $change)
{
echo 'checked="checked"';
}
?> />
Synth</label>
<br />
<label>
<input type="radio" name="scategory" value="arranger" id="scategory_1" <?php
if ($resuls[3] == "arranger" && id != "" && $change)
{
echo 'checked="checked"';
}
?> />
Arranger</label>
POMOC PLZ !?
|