Hi there PhP Coders !
I've a small problem I think .. I'm using a pre made PhP script that searches for domain names .
The script included in my PhP page that is basically a form. The script present the results with a cusomized REG LINK .
All I want to do is when I click the REG LINK then a text box named txt_domain in my form , will be filled with the availble domain that the script found as availble .
In other words : moving or the text_box content that the user sent to check if availble to my text_box , or moving the availble domain url string to that text box .
If you didn't understand a word of what I've said just tell me how to link one text field content to another and I'll go from there .
The script I'm including in my page is : MRwhois.
Thx ...[/url]
small problem I think ..
Moderator: General Moderators
Hi,
I'm not sure I understand your question but I think this should do the trick:
now you can use the info in your link (e.g. test.php?txt=...) or if your backend found a result just define the var txt from their.
hope this helps otherwise post some more info
siech
?>
I'm not sure I understand your question but I think this should do the trick:
Code: Select all
<?php $txt = isset ($HTTP_GET_VARSї'txt']); ?>
<input name="txt" type="text" value="<?php echo $test ?>">hope this helps otherwise post some more info
siech
?>
ok.. So you want what ever is put from one form to another? witch whould be:
Page1:
Page2:
O well... Post the code/ More information...
Page1:
Code: Select all
<html>
<head>
<title>Page1</title>
</head>
<body>
<form action="page2" method="post" name="form">
<input type="text" name="text" />
<input type="submit" value="submit" />
</form>
</body>
</html>Code: Select all
<html>
<head>
<title>Page2</title>
</head>
<body>
<input type="text" name="show text" value="<?php print="$text"; ?>" />
</form>
</body>
</html>