Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

SitePoint PHP Blog:
Self-hosted Free Invoicing App - FusionInvoice
Mar 25, 2014 @ 16:18:53

On the SitePoint PHP blog today Denis Rendler introduces you to FusionInvoice, a self-hosted invoicing and tracking software based on the Laravel framework. One note, it has since been released commercially, but he focuses on the previous, freely available version instead.

As a freelancer or a small business your time is better spent creating that next big project or meeting the client’s requirements than keeping track of invoices. FusionInvoice is an open-source, self-hosted invoicing web application built for freelancers and small businesses. Although there are quite a few free online invoicing applications, none of them give you the privacy or the flexibility which FusionInvoice provides. Client management, dashboard and reports, recurring invoicing and invoice history are just few of its features.

He starts by listing out some of the other software requirements you'll need to run FusionInvoice and how to verify their settings. He helps you create the database for the app and points you to the installer (web-based) to help get you set up. Each step is documented with screenshots and any other commands you might need along the way. Finally, he shows you how to create a virtual host on your Apache server to handle the redirection to the front controller and set a domain name.

tagged: invoice application fusioninvoice introduction install configure

Link: http://www.sitepoint.com/self-hosted-free-invoicing-app-fusioninvoice/

DevShed:
User Management in a PHP Invoicing System
Sep 27, 2006 @ 15:30:00

DevShed has posted the last part in their look at the creation of an invoicing system to help you manage your clients today. This time, they focus on the management of users of the system (not the clients to invoice, that was this part).

In this fourth and final article covering the creation of a PHP invoicing system, we're going to put together the user management section. In this section we will be able to view all available users and do all the associated things like deleting or updating user details. We are also going to be able to add new users.

They start with grabbing the information of the current users of the system and listing them out. This allows simple modification and deletion of any of the users on the list. They give the code (and screenshots) for the user modification screen and show you how to set up an email reminder that sends out to the clients when a bill hasn't been paid.

tagged: user management invoice system delete update email reminder user management invoice system delete update email reminder

Link:

DevShed:
User Management in a PHP Invoicing System
Sep 27, 2006 @ 15:30:00

DevShed has posted the last part in their look at the creation of an invoicing system to help you manage your clients today. This time, they focus on the management of users of the system (not the clients to invoice, that was this part).

In this fourth and final article covering the creation of a PHP invoicing system, we're going to put together the user management section. In this section we will be able to view all available users and do all the associated things like deleting or updating user details. We are also going to be able to add new users.

They start with grabbing the information of the current users of the system and listing them out. This allows simple modification and deletion of any of the users on the list. They give the code (and screenshots) for the user modification screen and show you how to set up an email reminder that sends out to the clients when a bill hasn't been paid.

tagged: user management invoice system delete update email reminder user management invoice system delete update email reminder

Link:

DevShed:
Client Management for a PHP Invoicing System
Sep 20, 2006 @ 21:26:38

DevShed continues their look at the creation of an invoicing system today with this new tutorial, "Client Management for a PHP Invoicing System", part 3.

What's an invoicing system that can't manage the data for the clients you're invoicing? This article, the third of four parts, shows how to make managing your clients easy. This part of the system allows you to view a full list of client names, and add, update or remove clients from your database.

They build on the foundations in part one and part two to now create a client management section of the tool. They give you the table structure they use and show you (including the code/interface) how to remove, update, and add new clients to the database.

tagged: client management invoice system part3 database client management invoice system part3 database

Link:

DevShed:
Client Management for a PHP Invoicing System
Sep 20, 2006 @ 21:26:38

DevShed continues their look at the creation of an invoicing system today with this new tutorial, "Client Management for a PHP Invoicing System", part 3.

What's an invoicing system that can't manage the data for the clients you're invoicing? This article, the third of four parts, shows how to make managing your clients easy. This part of the system allows you to view a full list of client names, and add, update or remove clients from your database.

They build on the foundations in part one and part two to now create a client management section of the tool. They give you the table structure they use and show you (including the code/interface) how to remove, update, and add new clients to the database.

tagged: client management invoice system part3 database client management invoice system part3 database

Link:

DevShed:
Invoice Management in a PHP Invoicing System
Sep 14, 2006 @ 12:12:58

DevShed is continuing their series on working with an invoicing system in PHP with this second part, a look at the actual invoicing system they created the login for previously.

If you're running a business in which you're invoicing clients, you need some way to keep track of which invoices have gone out and which clients have paid. In this second article of a four-part series that covers the creation of a PHP invoicing system, we create the parts that deal with this kind of invoice management.

First off, they build out the select to pull out the invoice information and create the page to display the results on. They move to the other side of things, and create the form to set up an invoice, outputting it in a PDF format. To make it easier to see which of the invoices are unpaid, they also create a small section at the top of the list. And, last but not least by any means, they show you how to enter in a brand new invoice record into your database using the FCKeditor to make entering the actual contents of the invoice simple.

tagged: invoice management system pdf insert create unpaid invoice management system pdf insert create unpaid

Link:

DevShed:
Invoice Management in a PHP Invoicing System
Sep 14, 2006 @ 12:12:58

DevShed is continuing their series on working with an invoicing system in PHP with this second part, a look at the actual invoicing system they created the login for previously.

If you're running a business in which you're invoicing clients, you need some way to keep track of which invoices have gone out and which clients have paid. In this second article of a four-part series that covers the creation of a PHP invoicing system, we create the parts that deal with this kind of invoice management.

First off, they build out the select to pull out the invoice information and create the page to display the results on. They move to the other side of things, and create the form to set up an invoice, outputting it in a PDF format. To make it easier to see which of the invoices are unpaid, they also create a small section at the top of the list. And, last but not least by any means, they show you how to enter in a brand new invoice record into your database using the FCKeditor to make entering the actual contents of the invoice simple.

tagged: invoice management system pdf insert create unpaid invoice management system pdf insert create unpaid

Link:


Trending Topics: