The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
|||
|
|||
Translate from BASIC to PHP?
This is a simple calculator written in BASIC for drag racing.
Can anyone translate this to PHP or point me to a good tutorial? --------------------------------------------------- Code:
CONST Loss = .75 'Drivetrain loss CONST Ex = .33333333 'cubic curve exponent CONST ETconstant = 5.825 'corrects units and adjusts CONST MPHconstant = 234 'corrects units and adjusts INPUT "What is your raceweight"; lbs 'get keyboard input INPUT "What is your rear wheel HP"; rwhp 'get keyboard input hp = rwhp / loss 'calculate new hp variable PRINT "Estimated ET is: "; (lbs/hp)^Ex * ETconstant 'Calc PRINT "Estimated MPH is: "; (hp/lbs)^Ex * MPHconstant 'Calc Then I need to figure out how to imbed it in our vB board in our drag race forum. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|