Hello every body,
I created some pages for downloading files directly from my website
But i have problem with adding download link in php tags so is there any body to tell me how i can make download link inside the php tags.
i wrote some things like this :
$sql=mysql_query("select * from ebook where id='$id' ");
$row=mysql_fetch_array($sql);
$file=$row;
<a href="files/<? $file ?>.rar" onclick="someJSfunction()">Download here</a> but i doesn't work correctly...
please help me with this problem !