rajmohan Posted September 5, 2006 Share Posted September 5, 2006 Hai guys i am in trouble i need a help i am having a listbox and one textfield. in that if i change a listbox i got a value in textfield and how to get the values for my query. Quote Link to comment https://forums.phpfreaks.com/topic/19737-how-to-get-values-from-textfield-without-submiting-or-refreshing/ Share on other sites More sharing options...
mitzleah Posted September 5, 2006 Share Posted September 5, 2006 Hey,put this code in select tag[color=red]onChange="document.nameOfForm.submit();"[/color]like this:<select name="" [color=red]onChange="document.nameOfForm.submit();"[/color]> <option></option></select>Hope this one will help! Quote Link to comment https://forums.phpfreaks.com/topic/19737-how-to-get-values-from-textfield-without-submiting-or-refreshing/#findComment-86176 Share on other sites More sharing options...
rajmohan Posted September 5, 2006 Author Share Posted September 5, 2006 no i want to retrive get value from textfield value to phpthis value is kept in javascript Quote Link to comment https://forums.phpfreaks.com/topic/19737-how-to-get-values-from-textfield-without-submiting-or-refreshing/#findComment-86184 Share on other sites More sharing options...
mitzleah Posted September 5, 2006 Share Posted September 5, 2006 if the form method is postuse $_POST['textfieldname']if the form method is getuse $_GET['textfieldname']The title (how to get values from textfield without submiting or refreshing??) confused me. Hope I'm getting you! Quote Link to comment https://forums.phpfreaks.com/topic/19737-how-to-get-values-from-textfield-without-submiting-or-refreshing/#findComment-86188 Share on other sites More sharing options...
zq29 Posted September 5, 2006 Share Posted September 5, 2006 To do this without refreshing you will need to use an Ajax technique, if you're wanting to do this purely with PHP, you're pretty much out of luck I'm affraid... Quote Link to comment https://forums.phpfreaks.com/topic/19737-how-to-get-values-from-textfield-without-submiting-or-refreshing/#findComment-86193 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.