Hi!
Could you help me something I cannot solve?
On a php page there are several link with downloadable
source code (*.zip). For example:
<a href="../source1.zip">source1.zip</a>
<a href="../source2.zip">source2.zip</a>
How could I send the number of the link to a php function that places this number into a mySQL database. I know the database handling, but clicking on a link how to send this number to php function? It would be graet if no further page apperared.
Please write me sort examples to understand!
(For example:
on page download.php:
<?php
function save($number)
{
...
//database handling gose here
...
}
?>
<body>
...
<a href="../source1.zip">source1.zip</a>
...
</body>
Thanks for your reply!
Jac from Hungary