on mysql database one table's column name is a & B. When i fetch data from this column data not shown on screen URL is a%20&%20 but when i put %26 instead of & data are shown.
Not shown Data ( http://localhost/dashboard/View-Diploma.php?Course=a%20&%20b )
Shown Data ( http://localhost/dashboard/View-Diploma.php?Course=a%20%26%20b )
Php code -
<a href="View-Diploma.php?Course=<?php echo $cou_row['CourseName']; ?>
try urlencode and change mysql column collation but not work