├── mynewfile.txt ├── .gitignore ├── makethisfilestaged.txt ├── statics ├── logo.png ├── homebg.jpg ├── rohit.jpeg ├── abstbg2.png ├── favicon.ico ├── finance.png ├── 5570834-min.jpg ├── favicon-16x16.png ├── favicon-32x32.png ├── PngItem_5146697.png ├── apple-touch-icon.png ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── —Pngtree—creative abstract wave design_5759740.png └── site.webmanifest ├── README.md ├── spin.php ├── .github └── workflows │ ├── main_basicbank.yml │ └── main_bankbyrohit.yml ├── about_us.php ├── dbrohit.sql ├── transactions.php ├── all_cust.php ├── check_blc.php ├── contact_us.php ├── index.php └── send_money.php /mynewfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ignore.txt -------------------------------------------------------------------------------- /makethisfilestaged.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/logo.png -------------------------------------------------------------------------------- /statics/homebg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/homebg.jpg -------------------------------------------------------------------------------- /statics/rohit.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/rohit.jpeg -------------------------------------------------------------------------------- /statics/abstbg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/abstbg2.png -------------------------------------------------------------------------------- /statics/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/favicon.ico -------------------------------------------------------------------------------- /statics/finance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/finance.png -------------------------------------------------------------------------------- /statics/5570834-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/5570834-min.jpg -------------------------------------------------------------------------------- /statics/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/favicon-16x16.png -------------------------------------------------------------------------------- /statics/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/favicon-32x32.png -------------------------------------------------------------------------------- /statics/PngItem_5146697.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/PngItem_5146697.png -------------------------------------------------------------------------------- /statics/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/apple-touch-icon.png -------------------------------------------------------------------------------- /statics/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/android-chrome-192x192.png -------------------------------------------------------------------------------- /statics/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/android-chrome-512x512.png -------------------------------------------------------------------------------- /statics/—Pngtree—creative abstract wave design_5759740.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohitm619/Basic-Banking-System/HEAD/statics/—Pngtree—creative abstract wave design_5759740.png -------------------------------------------------------------------------------- /statics/site.webmanifest: -------------------------------------------------------------------------------- 1 | {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Basic-Banking-System 2 | 3 | ## Deployed Website Link -> http://rohitsparksbank.great-site.net/ 4 | 5 | 1. Fork the respo (Give ⭐ incase you like the work) 6 | 2. Clone the repo in your local machine. 7 | 3. Create the database "dbrohit" or any other named (change the settings in spin.php incase you create other named database) 8 | 4. Import the tables by using "dbrohit.sql" 9 | -------------------------------------------------------------------------------- /spin.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 22 | 23 | 31 | 32 | 33 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /.github/workflows/main_basicbank.yml: -------------------------------------------------------------------------------- 1 | # Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy 2 | # More GitHub Actions for Azure: https://github.com/Azure/actions 3 | 4 | name: Build and deploy PHP app to Azure Web App - basicbank 5 | 6 | on: 7 | push: 8 | branches: 9 | - main 10 | workflow_dispatch: 11 | 12 | jobs: 13 | build: 14 | runs-on: ubuntu-latest 15 | 16 | steps: 17 | - uses: actions/checkout@v2 18 | 19 | - name: Setup PHP 20 | uses: shivammathur/setup-php@v2 21 | with: 22 | php-version: '8.2' 23 | 24 | - name: Check if composer.json exists 25 | id: check_files 26 | uses: andstor/file-existence-action@v1 27 | with: 28 | files: 'composer.json' 29 | 30 | - name: Run composer install if composer.json exists 31 | if: steps.check_files.outputs.files_exists == 'true' 32 | run: composer validate --no-check-publish && composer install --prefer-dist --no-progress 33 | 34 | - name: Upload artifact for deployment job 35 | uses: actions/upload-artifact@v2 36 | with: 37 | name: php-app 38 | path: . 39 | 40 | deploy: 41 | runs-on: ubuntu-latest 42 | needs: build 43 | environment: 44 | name: 'Production' 45 | url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} 46 | 47 | steps: 48 | - name: Download artifact from build job 49 | uses: actions/download-artifact@v2 50 | with: 51 | name: php-app 52 | 53 | - name: 'Deploy to Azure Web App' 54 | uses: azure/webapps-deploy@v2 55 | id: deploy-to-webapp 56 | with: 57 | app-name: 'basicbank' 58 | slot-name: 'Production' 59 | publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_7F99CAB5CA1546C0BB7E71EA9EF6353F }} 60 | package: . 61 | -------------------------------------------------------------------------------- /.github/workflows/main_bankbyrohit.yml: -------------------------------------------------------------------------------- 1 | # Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy 2 | # More GitHub Actions for Azure: https://github.com/Azure/actions 3 | 4 | name: Build and deploy PHP app to Azure Web App - bankbyrohit 5 | 6 | on: 7 | push: 8 | branches: 9 | - main 10 | workflow_dispatch: 11 | 12 | jobs: 13 | build: 14 | runs-on: ubuntu-latest 15 | 16 | steps: 17 | - uses: actions/checkout@v2 18 | 19 | - name: Setup PHP 20 | uses: shivammathur/setup-php@v2 21 | with: 22 | php-version: '8.0' 23 | 24 | - name: Check if composer.json exists 25 | id: check_files 26 | uses: andstor/file-existence-action@v1 27 | with: 28 | files: 'composer.json' 29 | 30 | - name: Run composer install if composer.json exists 31 | if: steps.check_files.outputs.files_exists == 'true' 32 | run: composer validate --no-check-publish && composer install --prefer-dist --no-progress 33 | 34 | - name: Upload artifact for deployment job 35 | uses: actions/upload-artifact@v2 36 | with: 37 | name: php-app 38 | path: . 39 | 40 | deploy: 41 | runs-on: ubuntu-latest 42 | needs: build 43 | environment: 44 | name: 'Production' 45 | url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} 46 | 47 | steps: 48 | - name: Download artifact from build job 49 | uses: actions/download-artifact@v2 50 | with: 51 | name: php-app 52 | 53 | - name: 'Deploy to Azure Web App' 54 | uses: azure/webapps-deploy@v2 55 | id: deploy-to-webapp 56 | with: 57 | app-name: 'bankbyrohit' 58 | slot-name: 'Production' 59 | publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_ADD789E852A547F6A6E214C9A3A5C34E }} 60 | package: . 61 | -------------------------------------------------------------------------------- /about_us.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 15 | 18 | 19 |
78 | This website is created by
80 |Intern at Sparks Foundation
Sinhgad Academy of Engineering, Pune
| Sender | 101 |Reciever | 102 |Amount | 103 |Status | 104 ||
|---|---|---|---|---|
| '.$row['sender'].' | 129 |'.$row['receiver'].' | 130 |'.$row['amount'].' | 131 |'; ?> Succeed ';}else{echo 'Failed ';} ?> 132 | 133 | |
| Name | 101 |Account No | 103 |Balance | 104 |Send Money From | 105 ||
|---|---|---|---|---|
| '.$row['name'].' | 129 |'.$row['email'].' | 130 |'.$row['accno'].' | 131 |'.$row['blc'].' | 132 |133 | Send Money 135 | 136 | | 137 |