Re: [PHP] displaying icons

2001-07-18 Thread Dave Freeman

On 17 Jul 01, at 16:30, Yassel Omar Izquierdo Souchay wrote:

 Put the same text inside php example
 ?
 echo img src=abduction.ico the next code

and if you want it to work reliable do is this way:

echo img src=\abduction.ico\;

and away you go...

CYA, Dave


---
Outback Queensland Internet - Longreach, Outback Queensland - Australia
http://www.outbackqld.net.au  mailto:[EMAIL PROTECTED]
---

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] displaying icons

2001-07-17 Thread Petr Jza

Hi everybody!
Please, have somebody any experience with displaying icons (type files
*.ico) in web pages?

When I have a pure html file that contain img src="abduction.ico", all is
OK - the icon is shown.
But when I create a html page with assistance PHP, the icon isn't shown.

Please, could you help me??
Thank you!

Best Regards, PETER.




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] displaying icons

2001-07-17 Thread Petr Jza

Hi everybody!
Please, have somebody any experience with displaying icons (type files
*.ico) in web pages?

When I have a pure html file that contain img src="abduction.ico", all is
OK - the icon is shown.
But when I create a html page with assistance PHP, the icon isn't shown.

Please, could you help me??
Thank you!

Best Regards, PETER.




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] displaying icons

2001-07-17 Thread Jason Bell

how are you trying to use PHP to output the html?

AFAIK, there shouldn't be any difference between:

HTML document:  IMG SRC="abduction.ico"
PHP document:  print "IMG SRC='abduction.ico'";

You should note however that within the PHP print statement, you should to
refrain from the use of quotation marks... if you must quote something, use
a single quote, as I did in my example.

-JB


- Original Message -
From: "Petr Jza" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, July 17, 2001 12:47 PM
Subject: [PHP] displaying icons


 Hi everybody!
 Please, have somebody any experience with displaying icons (type files
 *.ico) in web pages?

 When I have a pure html file that contain img src="abduction.ico", all
is
 OK - the icon is shown.
 But when I create a html page with assistance PHP, the icon isn't shown.

 Please, could you help me??
 Thank you!

 Best Regards, PETER.




 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]