Hi, i am making a edit user form in dreamweaver and as a default value for the text field with password i get the current password, but in encoded form, because i store passwords using password() in my mysql database. id like to know how to decode it back to plain text and get it in the form field as a default value.
Here is the text field that gets me the encoded default password value displayed on the page:
<td><input type="text" name="vchPassword" value="<?php echo $row_rsUsers['vchPassword']); ?>" size="32"></td>
How do i get it to display in non encoded form??