[PHP] bookmarking with a trademark sign in title

2006-04-26 Thread Angelo Zanetti

Hi all,

This might be slightly OT but it is related to a PHP project.
I have a link on the site Im developing to bookmark the site. The title is XYZ company™ but when the add bookmark window comes up for saving the bookmark, I cannot see the ™ sign. Does anyone have any 
idea of how to get this site to be saved with the name of the company?


TIA.

Angelo

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



RE: [PHP] bookmarking with a trademark sign in title

2006-04-26 Thread Jay Blanchard
[snip]
This might be slightly OT but it is related to a PHP project.
I have a link on the site Im developing to bookmark the site. The title
is XYZ company(tm) but when the add bookmark window comes up for saving
the bookmark, I cannot see the (tm) sign. Does anyone have any 
idea of how to get this site to be saved with the name of the company?
[/snip]

Use the html special character for the TM...I think it is #174;

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



Re: [PHP] bookmarking with a trademark sign in title

2006-04-26 Thread chris smith
On 4/26/06, Angelo Zanetti [EMAIL PROTECTED] wrote:
 Hi all,

 This might be slightly OT but it is related to a PHP project.
 I have a link on the site Im developing to bookmark the site. The title is 
 XYZ company™ but when the add bookmark window comes up for saving the 
 bookmark, I cannot see the ™ sign. Does anyone have any
 idea of how to get this site to be saved with the name of the company?

There are a couple of different ways to print the TM..

http://www.w3schools.com/tags/ref_entities.asp

If that doesn't work, I guess you're stuck..

--
Postgresql  php tutorials
http://www.designmagick.com/

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



Re: [PHP] bookmarking with a trademark sign in title

2006-04-26 Thread Satyam
The problem usually is that many of the 'things' surrounding the main window 
of the browser do not understand HTML and its special characters.   The 
favorites or history lists are often one of them.  Most have solved the 
rendering of the title but not all.


If your target is mainly Windows clients, the best option is using 
iso-8859-1 as the character set and use the native windows trademark symbol. 
In that way, your browser main window will understand it as per the 
character encoding, and windows itself will also understand it for the rest 
of the controls where the internal windows character set is used.


Satyam



- Original Message - 
From: chris smith [EMAIL PROTECTED]

To: Angelo Zanetti [EMAIL PROTECTED]
Cc: PHP List php-general@lists.php.net
Sent: Wednesday, April 26, 2006 4:09 PM
Subject: Re: [PHP] bookmarking with a trademark sign in title


On 4/26/06, Angelo Zanetti [EMAIL PROTECTED] wrote:

Hi all,

This might be slightly OT but it is related to a PHP project.
I have a link on the site Im developing to bookmark the site. The title is 
XYZ company™ but when the add bookmark window comes up for saving the 
bookmark, I cannot see the ™ sign. Does anyone have any

idea of how to get this site to be saved with the name of the company?


There are a couple of different ways to print the TM..

http://www.w3schools.com/tags/ref_entities.asp

If that doesn't work, I guess you're stuck..

--
Postgresql  php tutorials
http://www.designmagick.com/

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

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



RE: [PHP] bookmarking with a trademark sign in title

2006-04-26 Thread Richard Lynch
On Wed, April 26, 2006 9:04 am, Jay Blanchard wrote:
 [snip]
 This might be slightly OT but it is related to a PHP project.
 I have a link on the site Im developing to bookmark the site. The
 title
 is XYZ company(tm) but when the add bookmark window comes up for
 saving
 the bookmark, I cannot see the (tm) sign. Does anyone have any
 idea of how to get this site to be saved with the name of the company?
 [/snip]

 Use the html special character for the TM...I think it is #174;

trade; should work as well -- I think that's one of the ones that's
been around since Day Two.  (Day One only had copy;)

That said -- it may not be allowed in the Bookmarks by the browser. 
Only the browser maker could change that.

-- 
Like Music?
http://l-i-e.com/artists.htm

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



Re: [PHP] bookmarking with a trademark sign in title

2006-04-26 Thread Richard Lynch
On Wed, April 26, 2006 10:13 am, Satyam wrote:
 The problem usually is that many of the 'things' surrounding the main
 window
 of the browser do not understand HTML and its special characters.
 The
 favorites or history lists are often one of them.  Most have solved
 the
 rendering of the title but not all.

 If your target is mainly Windows clients, the best option is using
 iso-8859-1 as the character set and use the native windows trademark
 symbol.
 In that way, your browser main window will understand it as per the
 character encoding, and windows itself will also understand it for the
 rest
 of the controls where the internal windows character set is used.

I personally think this is the WORST possible advice to give...

YMMV

-- 
Like Music?
http://l-i-e.com/artists.htm

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



Re: [PHP] bookmarking with a trademark sign in title

2006-04-26 Thread Satyam


- Original Message - 
From: Richard Lynch [EMAIL PROTECTED]

To: Satyam [EMAIL PROTECTED]
Cc: chris smith [EMAIL PROTECTED]; Angelo Zanetti 
[EMAIL PROTECTED]; PHP List php-general@lists.php.net

Sent: Wednesday, April 26, 2006 11:33 PM
Subject: Re: [PHP] bookmarking with a trademark sign in title



On Wed, April 26, 2006 10:13 am, Satyam wrote:

The problem usually is that many of the 'things' surrounding the main
window
of the browser do not understand HTML and its special characters.
The
favorites or history lists are often one of them.  Most have solved
the
rendering of the title but not all.

If your target is mainly Windows clients, the best option is using
iso-8859-1 as the character set and use the native windows trademark
symbol.
In that way, your browser main window will understand it as per the
character encoding, and windows itself will also understand it for the
rest
of the controls where the internal windows character set is used.


I personally think this is the WORST possible advice to give...

YMMV



I didn't say I like it either but I can't do anything about browsers, I do 
what I can.


Satyam

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