i need to launch a table by default when user click on a link on the website something like this:
localhost:8080/folder/?username=xxxx&pass=yyy&db=qqqqq&create=ttttt
but the link redirects to login page without auto logging in.
is there an option to add the default database details and table details on the php file so that users always wont be prompted for logging in
You couldn't pass password in the URL but you can implement the credentials() method providing it: http://www.adminer.org/en/extension/
Log in to post a comment.
i need to launch a table by default when user click on a link on the website
something like this:
localhost:8080/folder/?username=xxxx&pass=yyy&db=qqqqq&create=ttttt
but the link redirects to login page without auto logging in.
is there an option to add the default database details and table details on the php file so that users always wont be prompted for logging in
You couldn't pass password in the URL but you can implement the credentials() method providing it: http://www.adminer.org/en/extension/