This might be the silliest question ever. But how do I get to put a space between the Edit and the Delete labels?
echo " <a href=\"update.php?id=" . $id . "\"> Edit </a>";
echo " <a href=\"confirm.php?id=" . $id . "\"> Delete </a>";
I tried putting echo " "; in between but doesn’t work. The underline is straight from Edit to Delete as if they are the same label!
You might try to insert a non-breaking space between those :
Seems to help, here.
But, as an end-user, I tend to prefer having a dash between that kind of links :
I just find it more easy to read and see there are actually two separate links.