Articles related to web development
Tutorial : Recieving data (from MySQL) and displaying in a combo (drop down list box).
Level : Intermediate
This is very basic tutorial, actually someone requested me through PM but I didnt have time to repond him quickly, so here it is now.I assume you already know how to insert data into tables.or read the following tutorial [...]
This tutorial will demonstrate how to retrieve data from tables.LEVEL : BEGINNERI assume that you have read tutorial of adding data into tables. Read here.I will ty my best to keep it as easy as I can.Functions we will use :mysql_fetch_assoc();mysql_num_rows();Ok - now I assume that you have read the above tutorial I mentioned in [...]
Very Basic Tutorial which will demonstrate how to connect with MySQL.
LEVEL : BEGINNER
Every database has its users and password. So to connect to a database you must know Database name, username and password running on a host. You cannot perform any other functions unless the connection to databse is established. If you have already used [...]
This tutorial will demonstrate you how to CREATE tables and insert data into it. I assume that you have read tutorial for mySQL connectivity and you have already made config.php Read here
Level : BEGINER
The function we will use is :
mysql_query();
For creating new tables we use the following query.
Syntax : CREATE TABLE tablename(fields)
but we have to [...]