First of all. this works for just displaying a URL and a name with it.
Code: Select all
echo "<a href=\'view_client_info.php?clientid=\">" . $row['firstname'] . " " . $row['lastname'];Code: Select all
echo '<a href=\"view_client_info.php?clientid=" . $row['_rowid_'] . "\"> . $row['firstname'] . " " . $row['lastname'] . "</a>'; Ive searched this problem and actually saw some old posts with similar issues and I tried to imitate but still ended up with Syntax errors. Really would appreciate some assistance/explanation. Thanks in advance.