I have a php page that displays mysql data within text fields for a particular record.
The two fields I have are;
Code: Select all
<? echo $formVars["software"]; ?>
<? echo $formVars["license"]; ?>I would like to add a remove text link at the side of these elements which post to another page for storing purposes so that in the future people can see what software has been deleted from the system.
Any ideas, here is what I have;
Code: Select all
<?
$datalink = $formVars["software"] & $formVars["license"];
$link = $datalink;
$post = 'http://www.audit.giacom.com/addto.php'; //d11wtq | added quotes you were missing
$submit = PHPlink aref = $post;
echo $submit
?>thanks,
Mark