Posted by Douglas F. on 10/08/05 07:20
I would like to connect to:
<?php
if(isset(_POST['ver']) {
require_once('./MyStuff/mysql_connect.php');
$query2 = "INSERT INTO versiondl(Version, Date)
VALUES('$ver', NOW())";
}
?>
<td ... <a href= "./Download Files/somefile.exe"> somefile </a><td>
How can I use something like in a form (action="<?php echo
$_SERVER['PHP_SELF']; ?>") to connect from the html <a> tag to the above php
block?
[Back to original message]
|