This topic is locked

Password is visible

11/12/2008 7:58:39 AM
PHPRunner General questions
R
rainerwolf author

Hi,

is it possible to show the password as stars (****) in the list view? In edit mode the password is invisible?
Thanks for help

J
Jane 11/12/2008

Rainer,
use custom format on the "View as" settingsdialog on the Visual Editor for this purpose.

R
rainerwolf author 11/12/2008

Jane,
thanks for your answer, but what is the code in custom format?

J
Jane 11/13/2008

Rainer,
here is just a sample:

$str = "";

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

$str.="*";

$value = $str;