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:

IanP98
  • Prospect
Status: Offline
Joined: Feb 02, 201212Year Member
Posts: 698
Reputation Power: 28
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
#2. Posted:
Wilez
  • TTG Addict
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.
#3. Posted:
Left
  • TTG Senior
Status: Offline
Joined: Jun 30, 201112Year Member
Posts: 1,010
Reputation Power: 49
Status: Offline
Joined: Jun 30, 201112Year 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.)
#4. Posted:
CodeNashor
  • New Member
Status: Offline
Joined: Oct 21, 20149Year Member
Posts: 48
Reputation Power: 1
Status: Offline
Joined: Oct 21, 20149Year 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
#5. Posted:
Hacz
  • V5 Launch
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.
#6. Posted:
IanP98
  • Prospect
Status: Offline
Joined: Feb 02, 201212Year Member
Posts: 698
Reputation Power: 28
Status: Offline
Joined: Feb 02, 201212Year Member
Posts: 698
Reputation Power: 28
Thanks so much for all this help. Very useful
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.