need help for database tables and form

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
regor
Forum Newbie
Posts: 2
Joined: Thu Jul 30, 2009 8:13 am

need help for database tables and form

Post by regor »

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
User avatar
jackpf
DevNet Resident
Posts: 2119
Joined: Sun Feb 15, 2009 7:22 pm
Location: Ipswich, UK

Re: need help for database tables and form

Post by jackpf »

Are you going to pay someone to do this?
User avatar
califdon
Jack of Zircons
Posts: 4484
Joined: Thu Nov 09, 2006 8:30 pm
Location: California, USA

Re: need help for database tables and form

Post by califdon »

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
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.
Post Reply