With what web language could I develop something similar to this image? [closed]

-2

Well I'm trying to implement some such system on a website, as shown in the picture you choose where you are and where you want to go and the mode e appears a value, Could someone give me a light? What language do you use or any similar code or something that I can study?

    
asked by anonymous 24.12.2017 / 21:11

1 answer

-1

To make such a system You will need:

  • PHP: Will be used to save user options to a database data and generate the price calculation based on which options he chose

  • CSS: to style the page according to its layout.

  • javascript: Once the user has chosen the options, you have 2 options, refresh the page with the total value, or use javascript for
    update the value without needing to refresh the page.

    As you are getting started, I recommend that you start step by step. First write the simplest code. Create your page with HTML and css, from way you want it. After that, search for PHP and mysqli. it's all good if you do not save the data) After you get more experience and have less difficulty, you already add Javascript to make the page.

24.12.2017 / 21:23