A
Anonymous
Guest
When I insert a row in phpMyAdmin I can chose Password in the dropdown menu beside the textbox that I enter something into. How would I do that through a php query?
password("you'repassword")
insert into mytable values("some normal field",password("yourepassword"));
insert into mytable values("some normal field",'password("yourepassword")');