How to create a relational database in php step by step | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to create a relational database in php step by step

anybody with a step by step procedure on how to create a relational database in php should come in here pls... I have a project am working on that willl require such features thanks guys

4th Mar 2017, 8:02 PM
Kelsey Great
Kelsey Great - avatar
2 Answers
+ 1
Relational Databases had better be built up using SQL DDL and DML statements. First of all you should decide which kind of RDBMS (e.g. MySQL, PostgreSQL, Oracle) you want to use to create your DB, then you have to design your "relations" (i.e. tables and their constraints) and fill them with the data you need to retrieve. Those data are going to be presented later on a web UI by means of your server side programming language like PHP, JSP or ASP.NET
4th Mar 2017, 11:34 PM
Davide Corbelletto
Davide Corbelletto - avatar
+ 1
thanks @Davide, noted.
5th Mar 2017, 7:16 PM
Kelsey Great
Kelsey Great - avatar