I am passing a variable value from database to one PHP page through URL and that variable value contains spaces in it. The values before the space is passing successfully but not after the space. What can i do to pass the complete value? The URL concatenation i've done is shown in below code. Please help!
<?php $linking = "appointment.php?name=";
$linking .="$row[5]";
echo "<a href=$linking>BOOK AN APPOINTMENT</a>"
?>