Why HTTPS is more secure than HTTP

Importance of Https

Here is a quick introduction on HTTPS and the benefits of HTTPS over HTTP. HTTP – Hypertext Transfer ProtocolHTTPS – Hypertext Transfer Protocol over Secure Socket Layer HTTPS is a communications protocol for secure communication over the Internet which makes an encrypted connection between the browser and the web server. HTTPS is often used to […]

Quick Comparison between PDO (PHP Data Objects) and MySQli

Pdo Vs MySqli

Quick comparison between PDO and MySQL. 1) MySQLi supports only MySQL database where as PDO supports different database systems like Microsoft SQL Server, MySQL, PostgreSQL etc. 2) PDO supports named paramaters which makes it flexible and easier. MySQLi doesn’t support named parameters. MySQLi provides question mark parameter binding and we must keep track of paramater […]