Forum Moderators: open
How can i do it?
<a href="javascript:openpopup('http://localhost/mysite/css_test/mod_assignment.php?name=<?php echo($row['name']);?>&equipment_Type=<?php echo($row['equipment_Type']);?> &capability=<?php echo($row['capability']);?> ')">
<?php echo($row['name']);?>
<?php echo($row['equipment_Type']);?>
<?php echo($row['capability']);?>
</a>
Then in your mod_assignment.php file, you get those variables with this type of code:
// First, extract the form variables:
@extract($_GET);
// Then your variables will be named and populated like so:
$name
$equipment_Type
$capability