Hi,
I am having a problem setting this URL up correctly. Can anybody help me with this? Thanks! Any help is appreciated.
echo '<a href="./myaccount.php?" class="myacc" currentrow_jd0="' . urlencode($row[0]) . '" >My Account</a>';
😕
Regards,
Sara
What are you trying to do? Pass information via the URL? If so... you just add it on to the URL href, not as another HTML attribute...
echo '<a href="./myaccount.php?currentrow_jd0=' . urlencode($row[0]) . '" class="myacc">My Account</a>';