Recent content by Seiko K

  1. S

    PHP parse error on elseif?

    <?php $one = $_POST[Ra]+$_POST[P]; $two = $_POST[Ra]-$_POST[Rp]; $three = $_POST[D]*$two; $four = $three+$one*$_POST[Rp]; $a = $four*$_POST[D]; if($a>10) echo "Contact the nearest florist immediatly"; elseif ($a>5 and $a<=10) echo "Prepare a few remarks and deliver them with sincerity"...
  2. S

    HTML Input Restrict Numbers?

    is there anyway I can use the HTML input tag and restrict the text to be only a value from 1-10. I know I can make it only numbers and restrict it to only 2 characters, but that leaves me open to 99. Is there anyway I can do this with only HTML?
  3. S

    HTML Input Restrict Numbers?

    is there anyway I can use the HTML input tag and restrict the text to be only a value from 1-10. I know I can make it only numbers and restrict it to only 2 characters, but that leaves me open to 99. Is there anyway I can do this with only HTML?
Back
Top