RE: [PHP-DB] Need a shopping cart

2001-07-12 Thread Steve Brett

check out the session cart on phpbuilder.com

it stores all the cart stuff as session vars so you can use any db

Steve

 -Original Message-
 From: Jeff @ HookedOnThe.Net [mailto:[EMAIL PROTECTED]]
 Sent: 12 July 2001 02:47
 To: [EMAIL PROTECTED]
 Subject: [PHP-DB] Need a shopping cart
 
 
 Can anyone direct me to a shopping cart package (preferrably in PHP,
 although PERL would possibly work) which utilizes either an MS Access
 database or flat files?  I've found several shopping carts, but they
 all seem to require MySQL which I do not have access to on my server.
 My server is Windows NT 4 with PHP 4 and PERL 5.
 
 I sure hope someone can help.  Thanks in advance.
 
 Regards,
 Jeff [EMAIL PROTECTED]  -  ICQ UIN:  736807
 Training, Web Hosting and Design
 http://www.HookedOnThe.Net
 
 
 
 -- 
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: 
 [EMAIL PROTECTED]
 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] Need a shopping cart

2001-07-11 Thread Tom Peck

Jeff

Have you tried:  http://www.hotscripts.com  it seems to have a huge 
selection of PHP scripts - i'm not sure if it has what you are after 
though.  Why don't you have MySQL installed on your NT machine?  It is a 
LOT quicker than any MS Access database, or flat file - especially if you 
are setting up a shopping cart site.

Tom



At 18:46 11/07/2001 -0700, you wrote:
Can anyone direct me to a shopping cart package (preferrably in PHP,
although PERL would possibly work) which utilizes either an MS Access
database or flat files?  I've found several shopping carts, but they
all seem to require MySQL which I do not have access to on my server.
My server is Windows NT 4 with PHP 4 and PERL 5.

I sure hope someone can help.  Thanks in advance.

Regards,
Jeff [EMAIL PROTECTED]  -  ICQ UIN:  736807
Training, Web Hosting and Design
http://www.HookedOnThe.Net



--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP-DB] Need a shopping cart

2001-07-11 Thread David Balatero

Probably cause his host is extremely ghetto and refuses to install anything
non M$FT =P ...and he doesn't have full admin access to the server.

-- David Balatero

-Original Message-
From: Tom Peck [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 11, 2001 6:53 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] Need a shopping cart


Jeff

Have you tried:  http://www.hotscripts.com  it seems to have a huge
selection of PHP scripts - i'm not sure if it has what you are after
though.  Why don't you have MySQL installed on your NT machine?  It is a
LOT quicker than any MS Access database, or flat file - especially if you
are setting up a shopping cart site.

Tom



At 18:46 11/07/2001 -0700, you wrote:
Can anyone direct me to a shopping cart package (preferrably in PHP,
although PERL would possibly work) which utilizes either an MS Access
database or flat files?  I've found several shopping carts, but they
all seem to require MySQL which I do not have access to on my server.
My server is Windows NT 4 with PHP 4 and PERL 5.

I sure hope someone can help.  Thanks in advance.

Regards,
Jeff [EMAIL PROTECTED]  -  ICQ UIN:  736807
Training, Web Hosting and Design
http://www.HookedOnThe.Net



--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] Need a shopping cart

2001-07-11 Thread leo g. divinagracia iii

ummm... why not install MYSQL on your server?

you can have the apache/mysql/php triad.  all free/open sourced...

then there are a few shopping carts already written.  the book titled,
PHP and MySQL Web Development has a shopping cart example...

http://shop.barnesandnoble.com/booksearch/results.asp?WRD=PHP+and+MySQL+Web+Developmentuserid=17P90ZH208



Jeff @ HookedOnThe.Net wrote:
 
 Can anyone direct me to a shopping cart package (preferrably in PHP,
 although PERL would possibly work) which utilizes either an MS Access
 database or flat files?  I've found several shopping carts, but they
 all seem to require MySQL which I do not have access to on my server.
 My server is Windows NT 4 with PHP 4 and PERL 5.
 
 I sure hope someone can help.  Thanks in advance.
 
 Regards,
 Jeff [EMAIL PROTECTED]  -  ICQ UIN:  736807
 Training, Web Hosting and Design
 http://www.HookedOnThe.Net
 
 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]

-- 
Leo G. Divinagracia III
[EMAIL PROTECTED]

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP-DB] Need a shopping cart

2001-07-11 Thread Matthew Loff


Everyone suggesting Easy!  Just install Mysql! makes me laugh... :)

Jeff-- I suggest you check:

1) http://www.hotscripts.com/
2) http://www.zend.com/
3) http://www.sourceforge.com/
4) http://www.mysql.com/ (Just kidding!)

Any shopping cart that uses ODBC should work just fine--  and moreso, it
shouldn't be hard (if you absolutely needed to) to modify a Mysql cart
to use odbc calls instead.

Best of luck!


Jeff @ HookedOnThe.Net wrote:
 
 Can anyone direct me to a shopping cart package (preferrably in PHP, 
 although PERL would possibly work) which utilizes either an MS Access 
 database or flat files?  I've found several shopping carts, but they 
 all seem to require MySQL which I do not have access to on my server. 
 My server is Windows NT 4 with PHP 4 and PERL 5.
 
 I sure hope someone can help.  Thanks in advance.
 
 Regards,
 Jeff [EMAIL PROTECTED]  -  ICQ UIN:  736807
 Training, Web Hosting and Design
 http://www.HookedOnThe.Net
 
 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: 
 [EMAIL PROTECTED]


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP-DB] Need a shopping cart

2001-07-11 Thread support


Here's a list of some free shopping cart stuff
http://www.missoulaweb.com/help/index.phtml?qid=46cat=11

-- 
Allen Lee
http://MissoulaWeb.com
$10/month PHP4 MySQL Hosting

On Thu, 12 Jul 2001, Matthew Loff wrote:


 Ha ha... It makes perfect sense!

 I just assumed that since he was asking, he was implying that he didn't
 have the ability (due to administrative reasons) to install mysql.

 Good point, though. :)


 -Original Message-
 From: Tom Peck [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, July 12, 2001 1:01 AM
 To: [EMAIL PROTECTED]
 Subject: RE: [PHP-DB] Need a shopping cart


 Matthew

 So what's so funny about installing MySQL on a NT system that is already

 running Perl and PHP?  I think it makes perfect sense :-).

 Tom

 At 00:52 12/07/2001 -0400, you wrote:

 Everyone suggesting Easy!  Just install Mysql! makes me laugh... :)
 
 Jeff-- I suggest you check:
 
 1) http://www.hotscripts.com/
 2) http://www.zend.com/
 3) http://www.sourceforge.com/
 4) http://www.mysql.com/ (Just kidding!)
 
 Any shopping cart that uses ODBC should work just fine--  and moreso,
 it shouldn't be hard (if you absolutely needed to) to modify a Mysql
 cart to use odbc calls instead.
 
 Best of luck!
 
 
 Jeff @ HookedOnThe.Net wrote:
  
   Can anyone direct me to a shopping cart package (preferrably in PHP,

   although PERL would possibly work) which utilizes either an MS
   Access database or flat files?  I've found several shopping carts,
   but they all seem to require MySQL which I do not have access to on
   my server. My server is Windows NT 4 with PHP 4 and PERL 5.
  
   I sure hope someone can help.  Thanks in advance.
  
   Regards,
   Jeff [EMAIL PROTECTED]  -  ICQ UIN:  736807
   Training, Web Hosting and Design
   http://www.HookedOnThe.Net
  
   --
   PHP Database Mailing List (http://www.php.net/)
   To unsubscribe, e-mail: [EMAIL PROTECTED] For
   additional commands, e-mail: [EMAIL PROTECTED] To contact
   the list administrators, e-mail: [EMAIL PROTECTED]
 
 
 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail:
 [EMAIL PROTECTED]





-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]