Class |
Age in days |
PHP Query Builder Library for Related Tables Most PHP applications that need to perform database queries to access the application data need to access data in different database tables.
Composing queries that involve multiple tables needs to be done carefully.
Learn about this PHP query builder library for related tables to build and execute queries that involve multiple tables using the PHP PDO extension. |
1 |
UpMVC PHP CRUD Framework CRUD is a set of operations that can be performed on database records. Usually include the operations to Create, Retrieve, Update, and Delete records.
Many PHP developers have implemented pages to let users request that CRUD operations be performed on the application database records, for instance, in an application to manage user contacts.
Certain CRUD operations are delicate, so it is better that users confirm these actions before they are executed because the application may not be able to revert them. That is the case of an operation to delete a database record permanently.
UpMVC PHP CRUD Framework is a PHP package that implements CRUD operations. This package can generate HTML with JavaScript to ask the user to confirm the execution of delicate actions before those actions are executed. |
4 |
Ala PHP API Micro-Framework Nowadays, many PHP applications are APIs that serve mobile applications.
These applications follow common implementation patterns that make the code of different applications look very similar.
This fact makes the code of this type of application an excellent candidate to be at least in part generated by tools that depart from simple definitions and develop all the code necessary to run the applications.
This package implements a code generation tool that can generate code to implement an API that implements CRUD operations using the Lumen package and the query builder to customize the details of the CRUD operations.
It also generates code to implement the application unit and feature testing to help verify the quality of the API application. |
8 |
Simple PHP AJAX Load Page Without Refresh The speed of load of the pages is one factor that determines a site's quality.
AJAX requests can be used to make page loads faster by only retrieving the parts of a page that change when a user clicks on a link or submits a form that makes another page load.
This package provides a JavaScript library to make pages load dynamically using AJAX requests while preserving the browser history of pages, so the user can use the browser back and forward buttons to navigate in the browser page history. |
11 |
Tamagoshi PHP Cryptocurrency Miner Virtual Pet Part of the excitement of cryptocurrencies is that people can do a mining process to earn virtual money by working to find more virtual coins.
Usually, this mining work is done by specific software so that it can be automated, and the mining of virtual coins can done faster.
This package implements a game that simulates the cryptocurrency mining process done by a virtual pet.
This game can help people learn more about the cryptocurrency mining process in an educative and fun way. |
15 |
PHP Shipping Calculator Many businesses now are selling goods via the Internet with e-commerce systems.
When the goods are physical products, one aspect of the product's cost to the customer is the shipping cost.
The calculation of the shipping costs can be complex, depending on the cost of operation of the shipping carrier company.
This package provides a simple method of calculating shipping costs in PHP code that considers the geographic coordinates of the origin and destination location of the products to be shipped and the cost to deliver the products per kilometer of distance. |
16 |
PHP Crypto Currency Exchange Virtual currencies have become very popular among people who like finances since currencies like Bitcoin started to become used to exchange real money with virtual currency money.
Usually, the exchange process between currencies is done by broker companies.
This package implements a simulation of a cryptocurrency broker system.
With more development work, it can evolve into a real cryptocurrency broker system that actual broker companies can use. |
17 |
PHP Bitcoin Private Key Find Many people have created wallets to store amounts of virtual currency in Bitcoin and other virtual coins.
Sometimes, the owners of the wallets lose private keys to access those wallets. When that happens, they lose access to the virtual currency amounts stored in their wallets, causing significant financial losses.
This package provides a simple application to guess the private keys of known wallets by generating keys from a list of possible random words that can have been used to create the wallets.
This way, this package provides some hope to recover access to virtual currency wallets that the owners may have lost access due to having lost the wallet's private keys. |
18 |
Backup4WP WordPress is a prevalent PHP content management system used to serve many sites.
WordPress sites are also targeted by people with bad intentions that may cause harm to a WordPress site installation.
It is always a good idea to take a backup of the files and database of the WordPress site, just in case something terrible happens.
This package provides a standalone tool that can backup and restore the files and database of a WordPress site.
It works independently from the WordPress site itself. So, if a WordPress site stops working due to some damage in the WordPress installation, this tool can still be used to restore the WordPress database. |
22 |
Laravel MongoDB CRUD Blog Laravel is a popular PHP framework often used to implement applications that can perform CRUD (Create, Read, Update, and Delete) operations on records stored in a database.
This package implements a blog application that uses Laravel to implement CRUD operations on database records stored in MongoDB. |
23 |