Jump to content

Recommended Posts

Posted

Hi Everyone,

I'm new to all the backend web development stuff and need some advice. I have a client who needs a site developed to function as an ordering page for their company business cards. Here is what I need to acheive:

 

1. +- 4 levels of users (ie. admin, managers, etc.)

2. Each level has restrictions attached to it. ie a staff person cant order cards w/CEO title

3. Once processed the order needs to go to a specific email address belonging to an admin of the company for approval, then once approved the order needs to be sent to the print shop via email.

 

The client wants to keep it simple allowing only a few options for each user. Any help will be appreciated.

 

Thanks!

-Paul

Posted

Welcome to the forums. A shopping cart system might work for you. Have you tried doing a google search for anything related to this?

Posted

Hi everyone,

 

The shopping cart site may work, it just seems a little clunky to me. I'll start researching it in other places, but if anyone has any ideas I'd love to hear them.

 

Thanks!!

-Paul

  • 2 weeks later...
Posted

If I understand you correctly you don't want to do actual credit card processing. It is more of an internal system for tracking who needs what.

The traditional custom solution would be using PHP for server side scripting and mysql for the db. It should be fairly straight forward. Generally I use phpmyadmin to setup the db.

 

Probably can do just 2 tables:

Users table would be something like : username/firstname/lastname/password/level

 

Orders table would be something like:

order_id/status (requested/approved), + card option fields.

 

You would need order php pages to gather the orders.

You would also need process php pages to approve orders and email orders to print shop.

You can either do user setup using phpmyadmin.. or you can write pages for it.

 

If you can't find anything packaged that fits the bill, this is an approach to solving it in a custom way.

 

Hope this helps.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...