erick.lopes Posted November 8, 2011 Report Share Posted November 8, 2011 Pessoal estou com um problema que acredito seja facil de resolver pra quem entende de PHP, o que não bem o meu caso.Bom preciso mudar o script abaixo para para um select simplesscript: <?php if (($display_rental & $display_sale) == "Y"){echo "<TR><TD></TD><TD><p><input name=\"po\" type=\"radio\" value=\"S\"><font face=\"Arial\" size=\"2\">Vendas</font><br><input name=\"po\" type=\"radio\" value=\"R\"><font face=\"Arial\" size=\"2\">Aluguel</font><br></p></TD></TR>";}elseif (($display_rental) == "Y"){echo "<TR><TD></TD><TD><p><input name=\"po\" type=\"hidden\" value=\"R\"></p></TD></TR>";}elseif (($display_sale) == "Y"){echo "<TR><TD></TD><TD><p><input name=\"po\" type=\"hidden\" value=\"S\"></p></TD></TR>";}?>fico no aguardo de uma ajuda Quote Link to comment Share on other sites More sharing options...
0 ESerra Posted November 8, 2011 Report Share Posted November 8, 2011 Primeiro:if (($display_rental & $display_sale) == "Y"){Isso dai nunca funcionariaSegundo, o que viria a ser um "select simples"? Quote Link to comment Share on other sites More sharing options...
Question
erick.lopes
Pessoal estou com um problema que acredito seja facil de resolver pra quem entende de PHP, o que não bem o meu caso.
Bom preciso mudar o script abaixo para para um select simples
script:
<?php
if (($display_rental & $display_sale) == "Y"){
echo "<TR><TD></TD><TD><p><input name=\"po\" type=\"radio\" value=\"S\"><font face=\"Arial\" size=\"2\">Vendas</font><br>
<input name=\"po\" type=\"radio\" value=\"R\"><font face=\"Arial\" size=\"2\">Aluguel</font><br></p></TD></TR>";
}
elseif (($display_rental) == "Y"){
echo "<TR><TD></TD><TD><p>
<input name=\"po\" type=\"hidden\" value=\"R\"></p></TD></TR>";
}
elseif (($display_sale) == "Y"){
echo "<TR><TD></TD><TD><p>
<input name=\"po\" type=\"hidden\" value=\"S\"></p></TD></TR>";
}
?>
fico no aguardo de uma ajuda
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.