Install xampp for windows from here
http://www.apachefriends.org/en/xampp.html
you can setup any php/mysql application there for development.
Cheers
- osCommerce Support Forum
- → Viewing Profile: oscommercecoders
Latest News: (loading..)
Community Stats
- Group Community Member
- Active Posts 17 (0.01 per day)
- Most Active In General Support (9 posts)
- Profile Views 5,361
- Age Age Unknown
- Birthday Birthday Unknown
-
Real Name
Mike
-
Gender
Male
-
Interests
Oscommerce customization - contact me
0
Neutral
Latest Visitors
Posts I've Made
In Topic: IIS 5.3 (Win XP) Installation
30 April 2012, 20:34
In Topic: Incomplete shopping cart/no checkout
15 February 2012, 19:33
Recover Cart Sales
you can get it here http://www.oscommerce.com/community?contributions=&search=recover+carts&category=all and use the one depending on the oscommerce store version you have
cheers
you can get it here http://www.oscommerce.com/community?contributions=&search=recover+carts&category=all and use the one depending on the oscommerce store version you have
cheers
In Topic: discount script in SQL
27 December 2011, 20:02
suppose price is 100
update products set products_price = (products_price * 1.20)
then price becomes 120 after 20% increase
update products set products_price = (products_price * 0.80)
then price becomes 80 after 20% increase
if you want to increase price by 20% then multiply it by 1.2 which is (100% + 20%)
% means out of 100 so 20% is 20/100 or 0.2
update products set products_price = (products_price * 1.20)
then price becomes 120 after 20% increase
update products set products_price = (products_price * 0.80)
then price becomes 80 after 20% increase
if you want to increase price by 20% then multiply it by 1.2 which is (100% + 20%)
% means out of 100 so 20% is 20/100 or 0.2
In Topic: discount script in SQL
27 December 2011, 17:03
To increase all prices by 20% use this..
update products set products_price = (products_price * 1.20)
To decrease all prices by 20% use this..
update products set products_price = (products_price * 0.80)
update products set products_price = (products_price * 1.20)
To decrease all prices by 20% use this..
update products set products_price = (products_price * 0.80)
- osCommerce Support Forum
- → Viewing Profile: oscommercecoders
- Forum Rules






Find content


