This topic is locked

Password in list page

3/19/2010 7:54:52 AM
PHPRunner General questions
A
aramuni author

Hi,
There is no password view option in list page "view as", but there is this option in "edit as".
How can I show the password in list page look like circles?

J
Jane 3/19/2010

Hi,
you can set up this field as Customon the"View as" settings dialog.

Here is a sample:

$str = "";

for($i=0; $i<strlen($value); $i++)

$str.="*";

$value = $str;


More info here:

http://php.net/strlen