You are viewing our Forum Archives. To view or take place in current topics click here.
How easy would this be to do? (Website)
Posted:
How easy would this be to do? (Website)Posted:
Status: Offline
Joined: Feb 02, 201212Year Member
Posts: 698
Reputation Power: 28
I was wondering how easy this would be to do:
User slides a slider to how much they want to buy
Depending on how much it works out the cost
Uses the cost to complete a payment form
Sends them an email and sends me an order notification
Im going to guess it will be really hard but maybe I am wrong. I think everything but the last step would be easy
User slides a slider to how much they want to buy
Depending on how much it works out the cost
Uses the cost to complete a payment form
Sends them an email and sends me an order notification
Im going to guess it will be really hard but maybe I am wrong. I think everything but the last step would be easy
#2. Posted:
Status: Offline
Joined: Apr 29, 201113Year Member
Posts: 2,192
Reputation Power: 99
Status: Offline
Joined: Apr 29, 201113Year Member
Posts: 2,192
Reputation Power: 99
It's all pretty straight forward.
Sliders could be done using JQuery, The email to either party could be done using PHP.
Sliders could be done using JQuery, The email to either party could be done using PHP.
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Jun 30, 201113Year Member
Posts: 1,010
Reputation Power: 49
Yeah, not to hard. Abit of javascript, php and ta-da! Alot of payment method systems use it (WHMCS, BoxBilling etc.)
- 0useful
- 0not useful
#4. Posted:
Status: Offline
Joined: Oct 21, 201410Year Member
Posts: 48
Reputation Power: 1
Status: Offline
Joined: Oct 21, 201410Year Member
Posts: 48
Reputation Power: 1
Simple as shit.
#User slides a slider to how much they want to buy
jQuery, javascript - use whatever u want
#Depending on how much it works out the cost
javascript - 1+1=3
#Uses the cost to complete a payment form
html - the easiest and ugliest way, so also use CSS please
#Sends them an email and sends me an order notification
javascript
#User slides a slider to how much they want to buy
jQuery, javascript - use whatever u want
#Depending on how much it works out the cost
javascript - 1+1=3
#Uses the cost to complete a payment form
html - the easiest and ugliest way, so also use CSS please
#Sends them an email and sends me an order notification
javascript
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Mar 04, 201014Year Member
Posts: 2,891
Reputation Power: 150
Status: Offline
Joined: Mar 04, 201014Year Member
Posts: 2,891
Reputation Power: 150
CodeNashor wrote
#Sends them an email and sends me an order notification
javascript
The most secure way to send an email wouldn't be Javascript. As the user could find your email and spam you. PHP would be a more secure way to handle it. Maybe an AJAX call with POST requests sent to a PHP Mailing Script.
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Feb 02, 201212Year Member
Posts: 698
Reputation Power: 28
Thanks so much for all this help. Very useful
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.