Local booking system

Soldato
Joined
27 Dec 2005
Posts
17,316
Location
Bristol
I'm going to be exhibiting at a show next month and we need to be able to take bookings on a laptop.

I was going to set up a HTTP server and build a semi-basic PHP/MySQL driven system to take the orders, however once you start thinking about editing orders, customers coming back later to amend details and general functionality it starts becoming less basic.

So, does anyone have any other ideas? The only other thing I can think of is Excel which is just messy, unbrandable and not great for data protection.

I only know PHP/MySQL so I guess I'm just seeing if anyone's got any ideas as to how best to go about this using those languages.
 
Also, on the same subject, I've only ever installed Apache/phpMyAdmin on a PC, but we'll be using a Mac (spit) at the show. Anything I need to be aware of compatibility wise?
 
Also, on the same subject, I've only ever installed Apache/phpMyAdmin on a PC, but we'll be using a Mac (spit) at the show. Anything I need to be aware of compatibility wise?

I am guessing you could just use Xampp? (never used it on a Mac but there is a Mac OSX version.... I use this on windows with no problems)
That should set everything up for you in regards to Web Services.

If you are just using forms then as long as you have a unique field (email address for example) then returning the relevant order info should be easy if anyone needs to modify anything.

Then a simple UPDATE statement rather than INSERT for those orders.
 
Why would using PHP/MySQL be too hard? You can make the system as basic or as complex as you'd like.

I am sure you would be able to find a lot of the functionality you'd need out there on the web already.
 
I am guessing you could just use Xampp? (never used it on a Mac but there is a Mac OSX version.... I use this on windows with no problems)
That should set everything up for you in regards to Web Services.

Thanks, just installed and it's much easier than standard Apache,
 
Yeah, use mamp and get your PHP and MYSQL on the go. If you need any help just give us a PM. I have been doing a lot of .net recently but need to get my php skills up to scratch again.
 
Thanks for all your help guys. Finish the system this morning and didn't take as long as I expected at all. Helps that it's just a local/temporary system so there's barely any validation or security.

Anyway, thanks for suggesting Xampp, great piece of kit.
 
Back
Top Bottom