Hi !
I am trying to insert data on to the database in the background.
is there anyway of doing this.
This is what I have
<a href=\"getlink.php?linkid=".base64_encode($path)."\" TARGET=\"_new\" onClick=\"infiles.php?sharedByID=$sharedByID&path=$path&filename=$filename\">$filename</a></td>
its works with this but i dotn want to open a second window..
<a href=\"getlink.php?linkid=".base64_encode($path)."\" TARGET=\"_new\" onClick=\"window.open('infiles.php?sharedByID=$sharedByID&path=$path&filename=$filename')\">$filename</a></td>
thanks