Recently I found that my website is not logging in the people who uses Internet Explorer. It works with all other browsers but IE. I also noticed that if the “Remember me” checkbox is checked it works fine. After this all I had to do is to make the Remember me checkbox checked by default […]
Before you can access and work with data in a database, you must create a connection to the database. In PHP, this is done with the mysql_connect() function. Syntax mysql_connect(servername,username,password); Parameter Description servername Optional. Specifies the server to connect to. Default value is “localhost:3306” username Optional. Specifies the username to log in with. Default […]
I had to check the user privileges on a database. What I found in google is only how to check the grants for a single user but I couldn’t find how to check the privileges of all users to a single database so I decided to write this article. The grants are usually kept in […]