Re: [PHP] password Boxes

2005-03-15 Thread Kevin

Richard Lynch [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
  Does anyone know how to change the style of password boxes so when the
  characters are entered an asterisk appears rather that a smal circle?
 
  Or is this just determed by the OS and uncangable with CSS or Javascript
  of
  PHP?

 They are certainly NOT changeable with PHP.

 I doubt that JavaScript holds the answer either.

I don't know much about JavaScript or VBScript, but I believe there is an
action called OnKeyPress or something to that effect. If that's there,
writing a function that accepts the key pressed and replace it with another
character, while the original pressed character is stored in a shadow array?
Like I said.. have no clue, if this is possible, but that is what I would
try


 You might, however, find an HTML ATTRIBUTE supported by some browsers that
 allows you to change the character used.  I doubt it, but it's possible.

 If it is possible, presumably CSS allows you to change the attribute as
 well, though you never know for sure with CSS...

 For sure, whatever you do find, it ain't something that's standard across
 all browsers.  But you may only care about the one browser that uses the
 small circles anyway.

 Why in the world do you WANT to change it? [puzzled]

 --
 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



[PHP] password Boxes

2005-03-14 Thread Ross Hulford
Does anyone know how to change the style of password boxes so when the 
characters are entered an asterisk appears rather that a smal circle?

Or is this just determed by the OS and uncangable with CSS or Javascript of 
PHP?


R. 

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



Re: [PHP] password Boxes

2005-03-14 Thread trlists
On 14 Mar 2005 Ross Hulford wrote:

 Does anyone know how to change the style of password boxes so when
 the characters are entered an asterisk appears rather that a smal
 circle? 

It is determined by the browser and OS.  I presume you are talking 
about Windows XP, which is where I see that behavior.  You might try 
use a CSS entry or style= to change the font for the input box to 
Courier and see if it behaves differently.


--
Tom

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



Re: [PHP] password Boxes

2005-03-14 Thread Dotan Cohen
On Mon, 14 Mar 2005 08:37:04 -0500, [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:
 On 14 Mar 2005 Ross Hulford wrote:
 
  Does anyone know how to change the style of password boxes so when
  the characters are entered an asterisk appears rather that a smal
  circle?
 
 It is determined by the browser and OS.  I presume you are talking
 about Windows XP, which is where I see that behavior.  You might try
 use a CSS entry or style= to change the font for the input box to
 Courier and see if it behaves differently.
 
 --
 Tom
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 
change
input type='text' name='name'/

To:
input type='password' name='name'

This is an HTML related question, not php (or even javascript). Next
time try google.

Dotan Cohen
http://English-Lyrics.com
http://Song-Lyriks.com

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



Re: [PHP] password Boxes

2005-03-14 Thread Jochem Maas
Dotan Cohen wrote:
On Mon, 14 Mar 2005 08:37:04 -0500, [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:
On 14 Mar 2005 Ross Hulford wrote:

Does anyone know how to change the style of password boxes so when
the characters are entered an asterisk appears rather that a smal
circle?
It is determined by the browser and OS.  I presume you are talking
about Windows XP, which is where I see that behavior.  You might try
use a CSS entry or style= to change the font for the input box to
Courier and see if it behaves differently.
--
Tom
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

change
input type='text' name='name'/
To:
input type='password' name='name'
This is an HTML related question, not php (or even javascript). Next
time try google.
yeah ... but next time read the question before you answer ;-)
the guy was wondering how to change which character was used as
the mask in password fields - normally its an asterisk, if
you use WinXP with the std. wibbly-wobbly-blue-bubble-wrap theme
it shows a small (filled) circle instead... earth-shattering.
:-)
Dotan Cohen
http://English-Lyrics.com
http://Song-Lyriks.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] password Boxes

2005-03-14 Thread trlists
On 14 Mar 2005 Dotan Cohen wrote:

 change
 input type='text' name='name'/
 
 To:
 input type='password' name='name'

This does not address the question.  The OP saw small dots in the 
password display, he wanted asterisks.   That is not because he was 
using type='text' but because he was already using type='password' and 
the browser had a particular way of displaying characters in such 
fields, which he wanted to change.

 This is an HTML related question, not php (or even javascript). Next
 time try google. 

Really it is a browser implementation question, not even HTML. But in 
any case, I am not the person who asked the question.  You may want to 
direct your advice to them.

People get confused all the time about what is happening on the server 
side and what is on the client side.  This poster asked specifically 
whether the issue could be addressed in PHP or was (in his terms) an 
OS issue.  I don't think knowing the answer to that question is a 
prerequisite for posting here.

--
Tom

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



Re: [PHP] password Boxes

2005-03-14 Thread Richard Lynch
 Does anyone know how to change the style of password boxes so when the
 characters are entered an asterisk appears rather that a smal circle?

 Or is this just determed by the OS and uncangable with CSS or Javascript
 of
 PHP?

They are certainly NOT changeable with PHP.

I doubt that JavaScript holds the answer either.

You might, however, find an HTML ATTRIBUTE supported by some browsers that
allows you to change the character used.  I doubt it, but it's possible.

If it is possible, presumably CSS allows you to change the attribute as
well, though you never know for sure with CSS...

For sure, whatever you do find, it ain't something that's standard across
all browsers.  But you may only care about the one browser that uses the
small circles anyway.

Why in the world do you WANT to change it? [puzzled]

-- 
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] password Boxes

2005-03-14 Thread Dotan Cohen
On Mon, 14 Mar 2005 16:25:32 +0100, Jochem Maas [EMAIL PROTECTED] wrote:
 
 yeah ... but next time read the question before you answer ;-)
 the guy was wondering how to change which character was used as
 the mask in password fields - normally its an asterisk, if
 you use WinXP with the std. wibbly-wobbly-blue-bubble-wrap theme
 it shows a small (filled) circle instead... earth-shattering.
 
 :-)
 

I stand corrected! As a Fedora user, I have never seen those circles,
so I did fully understand the question. And, being OT, maybe a
personal email to the OP would have been better, but for the archives
I opted to answer on-list.

Would I be cynical if I suggested a different solution to the problem?
http://www.mozilla.org/products/firefox/


Dotan Cohen
http://English-Lyrics.com
http://Song-Lyriks.com

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



Re: [PHP] password Boxes

2005-03-14 Thread Jochem Maas
Dotan Cohen wrote:
On Mon, 14 Mar 2005 16:25:32 +0100, Jochem Maas [EMAIL PROTECTED] wrote:
yeah ... but next time read the question before you answer ;-)
the guy was wondering how to change which character was used as
the mask in password fields - normally its an asterisk, if
you use WinXP with the std. wibbly-wobbly-blue-bubble-wrap theme
it shows a small (filled) circle instead... earth-shattering.
:-)

I stand corrected! As a Fedora user, I have never seen those circles,
so I did fully understand the question. And, being OT, maybe a
personal email to the OP would have been better, but for the archives
I opted to answer on-list.
cool.
Would I be cynical if I suggested a different solution to the problem?
http://www.mozilla.org/products/firefox/
that's anything but cynical :-)
besides if you are developing web stuff you probably should be
running a number of diff. browsers regulary?

Dotan Cohen
http://English-Lyrics.com
http://Song-Lyriks.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php