+ 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
2 Antworten
+ 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
+ 1
thanks @Davide, noted.