Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select count(*) from mytable where username='myname' and pwd=encrypt('mypassword')
error_reporting(E_ALL)
Not sure what it means exactly..The 'select' yeilds a count of 0 with 1 row selected
select count(*) from mytable where username='myname';
select username, pwd from mytable where username='myname';
update mytable set pwd=PASSWORD('mypassword') where username='myname';
select username, pwd from mytable where username='myname' and pwd=PASSWORD('mypassword');