can someone help me solving this
<a href="test.php?file=text & excel.doc&myFile=Y">test</a>
thats the link and i want to display the value in test.php like this
file = text & excel.doc
myfile = Y
but everytime i click on the link it only displays the value like this
file = text
myfile = Y
but why it didnt print the value of file exactly
here the code on my test.php
<? print 'file = '.$file.'<br>myfile ='.$myFile; ?>
thank you in advance