Forum Moderators: coopster
<input type="submit" value="<?= ($password?" update="" password="" set="" password="">" name="submit">
Firstly, no closing PHP tag. Secondly its what looks like a ternary operator with a colon missing and a missing closing parenthesis.
What are you trying to do?
<td>
<form action="index.php?page=upload_photo" method='post"'>
<input name="private_password">
<input type="submit" value="<?= ($password?" update="" password="" set="" password=""> name="submit">
<input type="hidden" name="action" value="change_password">
</form>
</td>
dreamcatcher touched on a couple things but I really can't guess at what that is supposed to be, no offence.
<input name="private_password">
that's no good, I assume that is supposed to be a password field so it should probably look more like
<input type="password" name="private_password">
the value of a submit button is what apperars on the button so I am not quite sure what this is
<input type="submit" value="<?= ($password?" update="" password="" set="" password=""> name="submit">
I would expect to see something more like this
<input type="submit" value="change password" name="submit">
not really sure what that is supposed ot do so that's about all I can tell you