Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: NEED HELP CREATING HTML  (Read 12825 times)

0 Members and 1 Guest are viewing this topic.

eclipse255

  • Guest
NEED HELP CREATING HTML
« on: September 26, 2012, 11:16:00 AM »
             HELLO:


I AM CREATING A MEDICAL TRANSCRIPTION WEBSITE. SINCE I WILL BE CHARGING MY CLIENTS PER MINUTE AND PER HOUR, NOT PER REPORT, I NEED TO CREATE A TRANSCRIPTION COST CALCULATOR THAT WILL ALLOW MY CLIENTS TO CALCULATE THE TOTAL PRICE THEY NEED TO PAY PER REPORT. HOWEVER, IN ORDER TO ADD THE CALCULATOR TO MY WEBSITE, I NEED TO CREATE THE HTML, AND I DO NOT KNOW HOW TO DO THIS. THE  COST CALCULATOR WOULD NEED TO LOOK SOMETHING LIKE THIS:

MINUTES OF RECORDED AUDIO  (A WINDOW WOULD BE DISPLAYED HERE, WHERE THE CLIENT CAN INDICATE THE NUMBER OF MINUTES OF THEIR REPORT FROM 1 TO 60 MINUTES)

HOURS OF RECORDED AUDIO (A WINDOW WOULD BE DISPLAYED HERE WHERE THE CLIENT CAN INDICATE THE NUMBER OF HOURS OF THEIR REPORT (FROM 1 HOUR TO 60 HOURS)

TOTAL COST (HERE THE TOTAL COST OF THE REPORT WOULD BE INDICATED)


ANY HELP CREATING THE HTML WOULD BE GREATLY APPRECIATED!!!!!

patio

  • Moderator


  • Genius
  • Maud' Dib
  • Thanked: 1769
    • Yes
  • Experience: Beginner
  • OS: Windows 7
Re: NEED HELP CREATING HTML
« Reply #1 on: September 26, 2012, 11:28:35 AM »
Will you be carging extra for capslock ? ?
" Anyone who goes to a psychiatrist should have his head examined. "

kpac

  • Web moderator
  • Moderator


  • Hacker

  • kpac®
  • Thanked: 184
    • Yes
    • Yes
    • Yes
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 7
Re: NEED HELP CREATING HTML
« Reply #2 on: September 26, 2012, 02:42:04 PM »
That'll be €2500 please.

eclipse255

  • Guest
Re: NEED HELP CREATING HTML
« Reply #3 on: September 26, 2012, 05:18:27 PM »
             Hello:


I am creating a medical transcription website. Since I will be chargingy my clients per minute and per hour, not per report, I need to create a transcription cost calculator that will allow my clients to calculate the total price per report. However, in order to add the calculator to my website, I need to create the HTML, and I do not know how to do this. The cost calculator would need to look something like this:

Minutes of recorded audio (a window would be displayed here, where the client can indicate the number of minutes of their report (from 1 to 60 minutes).

Hours of recorded audio (a window would be displayed here where the client can indicate the number of hours of their report (from 1 hour to 60 hours).)\

Total cost (here the total cost of the report would be indicated).

Any help would be greatly appreciated!

eclipse255

  • Guest
Re: NEED HELP CREATING HTML
« Reply #4 on: September 26, 2012, 05:19:31 PM »
         Very funny Patio.  Are you a comedian?

patio

  • Moderator


  • Genius
  • Maud' Dib
  • Thanked: 1769
    • Yes
  • Experience: Beginner
  • OS: Windows 7
Re: NEED HELP CREATING HTML
« Reply #5 on: September 26, 2012, 06:09:44 PM »
If i was getting paid for ...i'd starve.

I'm going to move this to the proper section...hopefully someone will be along shortly.
" Anyone who goes to a psychiatrist should have his head examined. "

TechnoGeek

  • Guest
Re: NEED HELP CREATING HTML
« Reply #6 on: September 26, 2012, 06:32:27 PM »
From my understanding, what you want here is a form with textboxes as you described and a 'Calculate' button.
Something that looks like:

Hours: _____________
Minutes: ________________
Rate (per hour): ______________
Charge: _____________
Calculate

When you press calculate, the answer of "(Hours + Minutes/60) * Rate" goes in the Charge box.
Is this what you're looking for?

eclipse255



    Newbie

    • Experience: Familiar
    • OS: Windows 2000
    Re: NEED HELP CREATING HTML
    « Reply #7 on: September 27, 2012, 09:41:13 AM »
      Hello:

             Yes, this is what I am looking for. However, I need to create the HTML code so that I may add it to my website.


    Thank you for responding

    kpac

    • Web moderator
    • Moderator


    • Hacker

    • kpac®
    • Thanked: 184
      • Yes
      • Yes
      • Yes
    • Certifications: List
    • Computer: Specs
    • Experience: Expert
    • OS: Windows 7
    Re: NEED HELP CREATING HTML
    « Reply #8 on: September 27, 2012, 11:17:07 AM »
    This isn't something that can be created in 5 or 10 minutes.

    TechnoGeek

    • Guest
    Re: NEED HELP CREATING HTML
    « Reply #9 on: September 27, 2012, 11:31:16 AM »
    This isn't something that can be created in 5 or 10 minutes.
    I'd guess about 20-30 myself. All he needs is a simple calculator, right?

    As for the form:
    Code: [Select]
    <form>
    <label>Hours: <input type='text' name='hours' value='1'></label><br>
    <label>Minutes: <input type='text' name='minutes' value='30'></label><br>
    <label>Rate per Hour: <input type='text' name='rate' value='1.25'></label><br>
    <label>Charge: <input type='text' name='total' value='1.875'></label><br>
    <button type='button' name='calculate'>Calculate</button>
    </form>


    As for calculating the amount, you'll need to look into using javascript code or jQuery. http://w3schools.com has some excellent tutorials on this.
    « Last Edit: September 27, 2012, 12:04:52 PM by TechnoGeek »

    eclipse255



      Newbie

      • Experience: Familiar
      • OS: Windows 2000
      Re: NEED HELP CREATING HTML
      « Reply #10 on: September 27, 2012, 03:47:37 PM »
        TechnoGeek, Thank you so much for all your help, I really appreciate it. By the way, I'm a she.

      Dewayne ron spliff



        Starter

        • Experience: Expert
        • OS: Windows 7
        Re: NEED HELP CREATING HTML
        « Reply #11 on: December 10, 2012, 12:55:34 AM »
        Lol......she is a she:D

        TechnoGeek

        • Guest
        Re: NEED HELP CREATING HTML
        « Reply #12 on: December 10, 2012, 07:41:38 AM »
        By the way, I'm a she.

        Dang... I did it again  ::)

        Dewayne ron spliff



          Starter

          • Experience: Expert
          • OS: Windows 7
          Re: NEED HELP CREATING HTML
          « Reply #13 on: January 07, 2014, 05:50:01 AM »
          I need you to keep helping me with the coding still

          camerongray



            Expert
          • Thanked: 306
            • Yes
            • Cameron Gray - The Random Rambings of a Computer Geek
          • Certifications: List
          • Computer: Specs
          • Experience: Expert
          • OS: Mac OS
          Re: NEED HELP CREATING HTML
          « Reply #14 on: January 07, 2014, 06:46:14 AM »
          I need you to keep helping me with the coding still

          Make a new topic.

          soybean



            Genius
          • The first soybean ever to learn the computer.
          • Thanked: 469
          • Computer: Specs
          • Experience: Experienced
          • OS: Windows 10
          Re: NEED HELP CREATING HTML
          « Reply #15 on: January 07, 2014, 08:12:08 AM »
          Off topic but what's going on here with the forum username puzzle game?  The starts with a member named eclipse255.  But that member closed their forum account, as indicated by "Guest" below their username in the original post and their second post.  Then later, they apparently renewed their forum membership using the same username again.  And finally, we see a member named Dewayne ron spliff who is apparently the same person as eclipse255.  This makes a very messy discussion thread.  Does this person not understand this?