Skip to content

A currency converter tool that fetches and displays real-time exchange rates using an external API and allows users to convert amounts between different currencies. Built using PHP, HTML, jQuery, AJAX, JSON, Bootstrap, CSS, and MySQL.

License

Notifications You must be signed in to change notification settings

mah-shamim/simple-currency-converter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simple-currency-converter

A PHP-based Currency Converter tool that allows users to convert currencies using real-time exchange rates fetched from an external API. The tool is built with PHP, HTML, jQuery, AJAX, JSON, Bootstrap, CSS, and MySQL. The application is designed to provide accurate currency conversion and display results in a user-friendly interface.

Topics: php, mysql, blog, ajax, bootstrap, jquery, css, currency conversion, external api integration, api integration

simple-currency-converter

Install Process

  1. Clone the repository:

    git clone https://github.com/yourusername/simple-currency-converter.git
  2. Navigate to the project directory:

    cd simple-currency-converter
  3. Set up the database:

    • Create a MySQL database named image_gallery.
    • Import the provided SQL file to create the necessary table:
      mysql -u yourusername -p currency_converter < db/database.sql
  4. Update the database configuration:

    • Copy config.sample.php to config.php:
      cp config.sample.php config.php
    • Open config.php and update the database configuration details.
  5. Setup API Integration:

    • Obtain an API key from a currency exchange API provider (e.g., ExchangeRate-API).
    • Update the config.php file with your API key and endpoint details.
    // API configuration
    define('API_URL', 'https://api.exchangerate-api.com/v4/latest/');
    define('API_KEY', 'your_api_key_here');
  6. Directory Permission:

    • If you encounter permission issues, you might need to set more permissive permissions, such as chmod 777, which grants read, write, and execute permissions to everyone:
      chmod 777 assets/uploads
    • Open config.php and update the database configuration details.
  7. Start the development server:

    php -S localhost:8000
  8. Access the application:

    • Open your web browser and navigate to http://localhost:8000.

File Structure

Here’s a basic file structure for your simple-currency-converter application:

simple-currency-converter/
│
├── index.html
├── db/
│   └── database.sql
├── include/
│   ├── config.sample.php
│   └── db.php
├── assets/
│   ├── css/
│   │   └── style.css
│   └── js/
│   │   └── script.js
├── src/
│   ├── fetch-rates.php
│   ├── convert.php
│   └── get-currencies.php
├── README.md
└── .gitignore

About

A currency converter tool that fetches and displays real-time exchange rates using an external API and allows users to convert amounts between different currencies. Built using PHP, HTML, jQuery, AJAX, JSON, Bootstrap, CSS, and MySQL.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published