2 Simple Steps to Create Top Navigation Bar

In this tutorial we are going to see how to create top navigation bar. Navigation bar is the most important part of any website or blog. So here we are going to use the 2 simple steps to create navigation bar with HTML and CSS. 1. Write Markup <div class=”nav”> <ul> <li class=”home”><a href=”#”>Home</a></li> <li … Read more

INSERT SELECT UPDATE AND DELETE WITH PDO

CRUD is most important thing in any programming language. After reading Programming basics ,we move to CRUD(create,read, update, delete). When we use MySQL database ,it is recommended to use PDO to secure web application from SQL injection. How to use mysqli_connect in PHP How to Setup MySQL Connection Using PDO in PHP In this tutorial, … Read more