views:

23

answers:

1
<textarea rows="1" cols="80" name="textarea{7}1" class="textarea_getcode">http://example.com/upload/logo.png&lt;/textarea&gt;

Please tell me how to grab http://example.com/upload/logo.png

Thanks ..

A: 
$textarea = $html->find('textarea[class=textarea_getcode]'); 

$textarea->innertext;

something like that?

Breezer
Thanks, but I need to check textarea{7}1 also ..
Krishna
change the selector and you're good to go
Breezer