I want to display them as one as a link $value ="<a href='owners_view.php?editid1=". $data["id"] ."'>".$data["fname"]. $data["lname"]."</a>"; This works, but I need a space in between the fname and lname I am lost on how to accomplish this.... probably pretty simple, but I am stumped Thanks for any help
I thought I tried that... but I missed the period before the " "
$value ="<a href='owners_view.php?editid1=". $data["id"] ."'>".$data["fname"] " ". $data["lname"]."</a>"; Thank you.... needed a fresh set of eyes looking at it....