Help with link to post two bits of data to page
Posted: Mon Jun 27, 2005 7:45 am
Hi,
I have a php page that displays mysql data within text fields for a particular record.
The two fields I have are;
Within the page this displays the software and license for a specific asset.
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;
No I know the above is absolutely incorrect, but I am a noob to this and I think the structure is near.
thanks,
Mark
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