hi,
I want to extract the "name" & "value" of all <input> and <select> tags in an HTML source.
for ex:
<input type=text name=qno value=1>
<input type=hidden name=ref value=books>
........
i would like to get the data (qno,1), (ref,books) ......and so on.
would appreciate if u could mention how to extract the name & values of a <select > tag as well , though for the moment <input> tags will do.
thankx.