Yes, that's what I already have
But what I need is how vbulletin treats the images in the signature.
I already have:
PHP Code:
<?php $size = GetImageSize ("placebo.gif"); ?>
<?php echo $size[3]; ?>
<?php $height = strstr($size[3], 'height="'); ?>
<?php $hoehe = substr($height, 8, 3);?>
<br><br>
<?php echo $hoehe; ?> Height
<br>
<?php $breite = substr($size[3], 7, 3);?>
<br>
<?php echo $breite; ?> Width
But the missing link is:
What to put instead of "placebo.gif" ???
It's just a very early start and i'm pretty new to php coding...