Hi beginer in php here.. i want to create the database in phpmyadmin please help me to make a php file to create the tables and make a form that will let the user input an account, a branch and manager, please show me the codes, just use some details below.. thanks
Database: Bank
Tables: Branch
branch-no(pk)
branch-address
manager-id
Manager
manager-id(pk)
manager-name
Account
account-no(pk)
branch-no
account-holder
balance
need help for database tables and form
Moderator: General Moderators
Re: need help for database tables and form
Are you going to pay someone to do this?
Re: need help for database tables and form
This is a forum for obtaining help in writing your own PHP script, not a forum where others write your script for you. I will tell you, however, that you are going to have trouble doing what you described. First of all "phpmyadmin" is not a database, it is an administrative system, an alternative way to manage a MySQL database. And you are almost certainly in big trouble if you expect to let users create a new table for every account. You will have to learn a lot of basics about databases before you can build a system like that.regor wrote:Hi beginer in php here.. i want to create the database in phpmyadmin please help me to make a php file to create the tables and make a form that will let the user input an account, a branch and manager, please show me the codes, just use some details below.. thanks
Database: Bank
Tables: Branch
branch-no(pk)
branch-address
manager-id
Manager
manager-id(pk)
manager-name
Account
account-no(pk)
branch-no
account-holder
balance