Hi, I would like the link to open in a new window, how do I include the target=_blank in this line, I keep getting parse error
echo "<td><a href=\"adddesktopinline-user.php?id=".$row['desktop_id']."\"> VIEW </a>";
adding " target=_blank" in echo
Moderator: General Moderators
Re: adding " target=_blank" in echo
Code: Select all
echo "<td><a href=\"adddesktopinline-user.php?id=".$row['desktop_id']."\" target=\"_blank\"> VIEW </a>";
Re: adding " target=_blank" in echo
Or use the single quote ' for internal quotation.