Hi I am trying to pass a value from one file to another file via URL.
The way i do is: <a href='fund_view.php?idfund="<? echo $row['idfund']; ?>"'>
after all i get the right value in other file using
$aidi = $_GET['idfund'];
echo 'ID= '.$aidi;`
But the result i get is this format ID= \"10\"
the url after i pass the id looks like
http://example.com/fund_view.php?idfund="10"
and what i want the result to be is just ID="10"
.