Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

html - The code gives a parse error I can't find what the error is

The code gives a parse error I can't find what the error is, the curlys brackets aren't wrong I'm trying to model the equation, v = sqrtfrac{19.6mass}{Cd1.229*area}

<?php
  function terminalVelocity($mass,$cd,$area) {

  $velocity = (sqrt(19.6 * $mass / $cd * 1.229 * $area));
  return $volume;
}

if ($_POST['enter']) {
  $mass = ($_POST['mass']);
  $area = ($_POST['area']);
  $cd = ($_POST['cd']);

  if ($mass > 0 && $front > 0) {
    $result = terminalVelocity($mass,$cd,$area);
    echo "The terminal velocity of the is: ". round($result,2);
} else {
    echo "You must have a value for each input";
}
?>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
if ($_POST['enter']) {
  $mass = ($_POST['mass']);
  $area = ($_POST['area']);
  $cd = ($_POST['cd']);

  if ($mass > 0 && $front > 0) {
    $result = terminalVelocity($mass,$cd,$area);
    echo "The terminal velocity of the is: ". round($result,2);
} else {
    echo "You must have a value for each input";
}

The number of {s compared with }s doesn't match. Try:

if ($_POST['enter']) {
  $mass = ($_POST['mass']);
  $area = ($_POST['area']);
  $cd = ($_POST['cd']);

  if ($mass > 0 && $front > 0) {
    $result = terminalVelocity($mass,$cd,$area);
    echo "The terminal velocity of the is: ". round($result,2);
  }
} else {
    echo "You must have a value for each input";
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...