01.12.2018, 12:27
Quote:
|
Can I get data from a selector that 'has' a class, like:
Code:
<span class="some_class_here">data_i_want_to_get</span> I'm not into HTML parsing so I don't know yet how to work with this. Thank you. |
PHP Code:
new Selector:selectclass = ParseSelector(".some_class_here");
new data[20];
GetNthElementText(your_html_doc,selectclass,0,data);//now data will have the text
DeleteSelector(selectclass);


