i have to change image tags per php ...
here is the source string ...
'picture number is <img src=get_blob.php?id=77 border=0> howto use'
the result should be like this
'picture number is #77# howto use'
I have already tested a lot, but I only get the number of the image as a result ... this is my last test ...
$content = 'picture number is <img src=get_blob.php?id=77 border=0> howto use';
$content = preg_replace('|\<img src=get_blob.php\?id=(\d+)+( border\=0\>)|e', '$1', $content);
now $content is 77
I hope someone can help me