1
I have a relatively trivial doubt, but I haven’t found the solution anywhere.
When I declare the following tag
echo '
<tr>
<td align="center">'.$skill.'</td>
<td>'.$nome.'</td>
<td>'.$dataconvertida.'</td>
<td>'.$desc.'</td>
<td><input type="checkbox" class="marcar" id="check" value='.$codigo.' name="check[]"/></td>
</tr>
';
I am assigning the code value to the checkbox, is it possible to assign more than one value to the checkbox? for example code , name.
That one
tag
is being written by means of aecho
? If yes put theecho
also to make it clearer how it opened and how it is closing– Isac
I added the entire Echo tag
– Willian Lima