Question regarding a PHP Book on E-Commerce

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
jason
Site Admin
Posts: 1767
Joined: Thu Apr 18, 2002 3:14 pm
Location: Montreal, CA
Contact:

Question regarding a PHP Book on E-Commerce

Post by jason »

Quick question

What would you want to see in a book on using PHP to build e-commerce websites? What topics would you be most interested in that you feel are not covered well enough on the Internet or in other books already?

Thanks
josh
DevNet Master
Posts: 4872
Joined: Wed Feb 11, 2004 3:23 pm
Location: Palm beach, Florida

Post by josh »

I would want it to cover security, advanced database techniques, "update-ability", etc...

Most users can already create a simple shopping cart system or something like that so I wouldn't spend too much of the book talking about how to build a website, I would make it talk about makeing a good website.
kral_majales
Forum Commoner
Posts: 36
Joined: Wed Nov 24, 2004 2:47 pm
Location: Dorset, UK

Post by kral_majales »

I recently read "php and mysql for dynamic websites" by larry ullman. i'd been learning php for a while, but this book really solidified what i knew. that book has a number of examples that are walked through, so i think the kind of book you propose would really need some examples of what could be a real, working site.

also... stuff about secure connections would be helpful, as well as organising payment gateways and so on (I'm trying to learn about these at the moment, lol).

i'd say as well that such a book would be best going in to some detail on some more advanced topics. when you teach someone only the easy stuff, to them it seems complicated.

but, when you teach them really complicated stuff, the easy and routine stuff becomes easy to them as well... if that makes sense! :lol:

K
jason
Site Admin
Posts: 1767
Joined: Thu Apr 18, 2002 3:14 pm
Location: Montreal, CA
Contact:

Post by jason »

The idea was to have the book cover building a site from A to Z. It would focus on building an e-commerce site. It would obviously focus on accepting payments either through a gateway service, or via something like PayPal. The idea is NOT to teach someone PHP. Rather, it would be focused on teaching someone how to build an e-commerce site using PHP, and cover the different aspects of it. It wouldn't just be a shopping cart, but rather building an entire website.

Keep the ideas coming, guys. =)
kral_majales
Forum Commoner
Posts: 36
Joined: Wed Nov 24, 2004 2:47 pm
Location: Dorset, UK

Post by kral_majales »

that sounds like a good plan. if you wrote a book like that, i would probably buy it :D

it may also be a good idea to cover some of the already-available ecommerce software solutions that are available, open source ones (I particularly like osCommerce), and not-so-open-source ones (like the beastly Actinic).

K
User avatar
John Cartwright
Site Admin
Posts: 11470
Joined: Tue Dec 23, 2003 2:10 am
Location: Toronto
Contact:

Post by John Cartwright »

Good idea jason, I would particularly like to see the payment processing and several different ways to do it, as you have mentioned.
. if you wrote a book like that, i would probably buy it
If jason wrote that book, first I would ask for a free copy, then if denied buy it.. :lol: :lol:
kral_majales
Forum Commoner
Posts: 36
Joined: Wed Nov 24, 2004 2:47 pm
Location: Dorset, UK

Post by kral_majales »

how about, if denied, you would DEMAND it?

then beg.

then perhaps buy it :lol:

P
myleow
Forum Contributor
Posts: 194
Joined: Mon Jun 21, 2004 7:05 pm
Location: California

Post by myleow »

Remember to put in Code Examples. I love code examples where i can learn something from and not copy the code.
myleow
Forum Contributor
Posts: 194
Joined: Mon Jun 21, 2004 7:05 pm
Location: California

Post by myleow »

I am espeacially interested in integrating Payment Processor....
jason
Site Admin
Posts: 1767
Joined: Thu Apr 18, 2002 3:14 pm
Location: Montreal, CA
Contact:

Post by jason »

Again, still in the planning phase. The payment processing integration portion would cover two aspects: integrating with a gateway service provider (something where you have your own SSL certificate, and you have your own merchant account); and integrating with an IPSP like service (something like PayPal).

Their might be a small chapter on existing solutions; this all depends on the size of the other content. Space constraints, my friends. =)
User avatar
John Cartwright
Site Admin
Posts: 11470
Joined: Tue Dec 23, 2003 2:10 am
Location: Toronto
Contact:

Post by John Cartwright »

Just keep us up to date when "jasons book on php" is hitting stores :P
User avatar
patrikG
DevNet Master
Posts: 4235
Joined: Thu Aug 15, 2002 5:53 am
Location: Sussex, UK

Post by patrikG »

What I would find most useful in a book about PHP and eCommerce would be a comparison of PHP's integrated encryption commands/extensions with a pro and con list.

Also, a section on security (as has been suggested), session-security, SQL-injection prevention. Things to consider when buying an SSL-certificate (server-wide on a reseller-account? huh?).

From a client's perspective: building blocks of a userfriendly and secure login system, statements for clients on the security of the site.

A section dealing with laws regarding storing credit card information (in the UK you're allowed to store everything, but the three-digit CSN - go figure), the implications when having to do that, the eternal question of where to store private keys if you're on a shared host.

That's the technical bit off the top of my head.
Draco_03
Forum Regular
Posts: 577
Joined: Fri Aug 15, 2003 12:25 pm
Location: Montreal, Canada

Post by Draco_03 »

- Why build an E-commerce
- Why E-commerce would be good for your compagny
- How to evaluate a client need (for E-commerce)
- E-commerce usually means currency converter (like oanda.com) so a section on currency converter.
- Okay this could be discussed, but E-commerce is a way to make money over the internet, so to be "able" to do so, you have to be well placed in search engine, and linked with other good sites. So I think that maybe a section on positioning you site in search engine could be good.

I'll add some other stuff later :)
good idea jason
User avatar
phpScott
DevNet Resident
Posts: 1206
Joined: Wed Oct 09, 2002 6:51 pm
Location: Keele, U.K.

Post by phpScott »

the topic I would be most interested in is SECUIRITY. I fill most books/articles gloss over this or just say to use a certificate or https.

A few other topics I think would be usefull would be database backend for simple shopping carts, to a small scale order processing/inventory management system.
Cover both sides of the e-commerce site, frontend/backend to give readers an idea of the life cycle of and inventory / order system..

Another possibility would be to maybe talk about integrating the website into a lan for store front use of transactions as well, maybe barcode readers etc...

Don't worry too much about the accounting side of things as that could always be covered in another book or just a small section on what a business might need to cover basic accounting principles.
Post Reply