Hi,
First up, I am a little lost with events.
I am trying to do this and I can almost say that its not doable:
"one.php"
<?php
echo '<input type="text" maxlength="5" name="bill" value="" /><br />';
$get_pass = 5;
$get_pass1 = 10;
?>
<a href="two.php?getpass=<? echo $get_pass ?>&getpass1=<? echo $get_pass1 ?>">test me</a>
"two.php"
<?php
$one=$_GET['getpass'];
$two=$_GET['getpass1'];
echo $one;
echo $two;
?>
The above works. I want to get at the data inside the text element. Is there anyway to do this or do I have to use forms to fire an event?
Thank you for answering.
sb