Rifts Posted February 14, 2013 Share Posted February 14, 2013 Hey guys, I'm trying to extract some returned data. In the data there is a form with this input: <input type="hidden" name="session" value="191"> I need to only get the value of this form; "191" in this case. What would be the preg_match pattern for this? thanks! Quote Link to comment https://forums.phpfreaks.com/topic/274469-help-trying-to-make-inputs/ Share on other sites More sharing options...
Christian F. Posted February 14, 2013 Share Posted February 14, 2013 I would probably use the DOMdocument class for this, as Regular Expressions aren't really meant for markup langauges. I also suspect that you're not trying to fetch the value from this line alone, are you..? In any case, have a proper look at DOMdocument and try to implement it. If it's not what you're looking for, come back and we'll help. Quote Link to comment https://forums.phpfreaks.com/topic/274469-help-trying-to-make-inputs/#findComment-1412442 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.