Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rayx81194/pawrangers
PawRangers - A Pet Adoption Website for Pet Lovers!
https://github.com/rayx81194/pawrangers
adoption css html mysql pet-project php
Last synced: about 1 month ago
JSON representation
PawRangers - A Pet Adoption Website for Pet Lovers!
- Host: GitHub
- URL: https://github.com/rayx81194/pawrangers
- Owner: RayX81194
- License: mit
- Created: 2024-06-08T17:31:55.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-08T17:38:06.000Z (7 months ago)
- Last Synced: 2024-06-08T18:47:09.990Z (7 months ago)
- Topics: adoption, css, html, mysql, pet-project, php
- Language: PHP
- Homepage:
- Size: 4.93 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# PawRangers - A Pet Adoption Website
**PawRangers** is a pet adoption website designed to connect rescue animals with loving homes. Built using HTML, CSS, JavaScript, Tailwind, PHP, and MySQL.
![logo](cover.png)
# Key Features
## User-friendly Interface
PawRangers provides an intuitive interface for users to easily navigate through pet listings, view details, and initiate adoption processes.
## Search and Filter Options
Users can search for pets based on various criteria such as species, breed, age, and location, ensuring they find the perfect match for their lifestyle.
## Pet Profiles
Each pet has a detailed profile featuring images, descriptions, temperament, and medical history, enabling potential adopters to make informed decisions.
# Getting Started
To run PawRangers on your local machine, follow these steps:
1. Extract the files in the computer.
2. Install dependencies:
- Ensure you have PHP and MySQL installed on your machine.
- Set up a local server environment like XAMPP or WAMP.
3. Import the database:
- Create a new database named `pet_info`.
- Create a new table inside the database `pet_info` named `pet_info` and `users`.
```
CREATE TABLE pet_info (
sno INT AUTO_INCREMENT PRIMARY KEY,
pet_name VARCHAR(255),
pet_breed VARCHAR(255),
pet_location VARCHAR(255),
pet_gender VARCHAR(10),
pet_weight VARCHAR(20),
pet_category VARCHAR(50),
pet_age VARCHAR(20),
pet_phone VARCHAR(20),
pet_image BLOB,
dt DATETIME
);
```
```
CREATE TABLE users (
sno INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255) NOT NULL,
email VARCHAR(255) NOT NULL,
password VARCHAR(255) NOT NULL,
dt TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
```
4. Start the server:
- Launch your local server environment.
- Navigate to the project directory and open `index.php` in your browser.
6. You're all set! You should now see PawRangers running on your local machine.# Contributing
We welcome contributions to enhance PawRangers. Feel free to submit pull requests with new features, improvements, or bug fixes.
## License
PawRangers is licensed under the [MIT License.](https://github.com/jescalan/accord/blob/master/license.md)