I am trying to read a field in a table which contains this sentence "Sales & Logistics" using the following code:
if(isset($_GET['major1']))
{
$major = $_GET['major1'];
}
else
{
$major ="";
}
Unfortunately, $major will contains only "Sales " after this code while it should be "Sales & Logistics".
Note: '&' has not been converted into any shape, it has been saved as it is.
How can I read anything inside this table cell?
Thank You