|
#1
|
|||
|
|||
|
error in width and height
after replacing all instances of str_ with ereg_ (see my post below),
i noticed that in Explorer my images aren't shown! while in FF they are. I looked at the HTML source in both browsers, and I saw the following code: Code:
<img id="image" src="images/20050423225156_magnolie2-800.jpg" alt="Magnolie 2" title="Magnolie 3" width=" " height="¯" /> |
|
#2
|
|||
|
|||
|
Wow! I'm puzzled!
I'll check it right away! |
|
#3
|
||||
|
||||
|
after replacing all instance of str_replace with ereg_replace inside index.php:
modify the line 158-159 from Code:
$tpl = ereg_replace("<IMAGE_WIDTH>",$image_width,$tpl);
$tpl = ereg_replace("<IMAGE_HEIGHT>",$image_height,$tpl);
Code:
$tpl = str_replace("<IMAGE_WIDTH>",$image_width,$tpl);
$tpl = str_replace("<IMAGE_HEIGHT>",$image_height,$tpl);
__________________
Photoblog: http://pblog.raminia.com Powered by Pixelpost 1.7 |
|
#4
|
|||
|
|||
|
thanks, it works now!
![]() I am the only guy who got this problem? |
| Post Reply |
| Thread Tools | |
|
|