blueboy escreveu:
May be a stupid question but can I link to images with doscument root

$img_url= $_SERVER['DOCUMENT_ROOT'].'/images/holder.gif';

echo "<img src=\"$img_url\" width=\"250\" height=\"163\"/>";

I am certain the path is correct,

If not what are my alternatives?


R.
--------------
I think the best solution is to set the image path using de define function.

@define ("PATHTOIMG", "the_path/", true );

echo '<img src="' .
PATHTOIMG . 'image.png" border="0" alt="image.png" title="Image title" />';

--
zerof
http://www.educar.pro.br/
Apache - PHP - MySQL - Boolean Logics - Project Management
----------------------------------------------------------
Você deve, sempre, consultar uma segunda opinião!
----------------------------------------------------------
Deixe todos saberem se esta informação foi-lhe útil.
----------------------------------------------------------      
You must hear, always, one second opinion! In all cases.
----------------------------------------------------------
Let the people know if this info was useful for you!
----------------------------------------------------------

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to