Skip to main content

Posts

Showing posts with the label PHP

SQL in a nutshell | Learn SQL

SQL stands for Structured Query Language. SQL is used to access and modify the data in a database. All dynamic web applications and websites make use of a database and only way to access these database is through SQL. Now practically what happens is that a programming language passes an SQL command which returns the result which is further processed for viewing. Demo of what we are making here Post it! Chatroom Let's cut the theory and move to practical. Objective: We will be making a small PHP website(chat room) using the SQL commands to feed and fetch the details. I will leave the lessons of PHP for some other day, in fact I'm myself in the learning phase as well. Part 1. Database and SQL installation. If you wish to run a database on your local machine follow this link . I recommend using an online service for practicing. 000webhost  is free and provides you everything. For this tutorial I will be using 000webhost so that the project I end up with will be ...