2
I’m looking to make a legend within an attribute <option>
create a label with the name of a product, how do I properly display this label?
The error is in the line inside the attribute title=""
:
echo "<option title='{$v1['cd_produto']}'>{$v1['nome']}' value='{$v1['cd_produto']}'>{$v1['nome']}</option>";
What returns to me:
Complete code:
<p> ID produto:
<select onclick="buscaDados()" name="cd_produto" id="cd_produto" required="" title="Escolha a roupa">
<option value="" title="Por padrão a opção é vazia, escolha abaixo o produto desejado"> Nenhum </option>
<?php
foreach ($resultado_produto as $v1) {
echo "<option title='{$v1['cd_produto']}'>{$v1['nome']}' value='{$v1['cd_produto']}'>{$v1['nome']}</option>";
}
?>
</select>
</p>
Cara has how to put in question a print of the final look that should be on the screen?
– hugocsl
I’ll print it out so you can see what comes back.
– user219364
@Xinante if the answer below has solved your problem, mark it as an accepted answer so you can help others as well. If not, please feel free to comment
– Julyano Felipe