ramki067 Posted May 21, 2008 Share Posted May 21, 2008 Hi all, I've a text box from which i need to transfer the values in text box to another page when i click a button. I've the following code but doesn't work. Please help. <input type=text name=search size=18 align=right> <input type="button" target=menu value="Go" onclick="fifthframe('search')"> and the javascript function is : function fifthframe(search) { parent.main.location.href="search_home.php?search="+search } I don't know much about javascript. Or can i do anything in php? Regards, Ramki. Link to comment https://forums.phpfreaks.com/topic/106574-need-help-in-transfering-a-text-box-value-to-another-form/ Share on other sites More sharing options...
newbie_07 Posted May 21, 2008 Share Posted May 21, 2008 Use sessions variables to store the value like: $_SESSION['myvar'] = $_POST['myvalue'] and then use the session variable in any form you like. Link to comment https://forums.phpfreaks.com/topic/106574-need-help-in-transfering-a-text-box-value-to-another-form/#findComment-546303 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.