Posted by shotokan99 on 05/16/07 01:50
for instance i do have this element but i dont have a <form>:
<input type="Text" name="myname" id="myname" size="30"...>
then i have this link:
echo'<a href="mypage.php?name='.$myname.'...>Save</a>';
i want that $myname will the value of myname textbox. something like
this:
$myname= <the value of the textbox>
then on the side of mypage.php it will catch the values on same
manner:
$myname=$_GET['myname'];
..
..
..
i know this can be easily using <form>...</form>. but if i dont want
to use a for will it be possible? incase it is, how get the value of
the textbox and assign it to $myname variable?
Navigation:
[Reply to this message]
|