-1
The cell in my table should display the redirect link to SELECT
, UPDATE
and DELETE
in the same cell, but everything is together and I wanted to know how to create a space between the links.
- Expected exit
SELECT UPDATE DELETE
- Current exit
SELECTUPDATEDELETE
- Code
echo '<td>'."<a href='../crud/select_itens_compra.php'>SELECT</a>"."<a href='../crud/update_itens_compra.php'>UPDATE</a>"."<a href='../crud/delete_itens_compra.php'>DELETE</a>".'</td>';
Cara pq vc does not use CSS to solve this?
– hugocsl