I am very new to functions. This is actually the second time I have tried to use one. I am trying to create a function that prints the label and the url with the SessionID attached. I need some help under standing why this does not work.
reusable.php
function url($prefix,$page,$target,$sid,$label) {
$url = "<a href='$prefix/$page?SessionID=$sid' target='$target'>" . $label . "</a>";
}
index.php
<tr>
<?
include reuable.php;
url("","forgot.php","",$SessionID,"Forgot Password")
?>
</tr>