What's the code to make a submit button that says "Submit"
(In HTML)
(In HTML)
<form name="input" action="whatever.php" method="get"> whatever: <input type="text" name="whatever"> <input type="submit" value="Submit"> </form>
<!-- within <body> --> <form method = "post" action = "borderCreate.php"> <input type = "text" name = "size" value = ""> <br> <input type = "radio" name = "sizeType" value = "px"> pixels <input type = "radio" name = "sizeType" value = "pt"> points <input type = "radio" name = "sizeType" value = "cm"> centimeters <br> <input type = "submit" value = "wtf no javascript"> </form> </body> </html> <!-- /////////////borderCreate.php from here down///////////// --> <!-- within <body> Your border: <center> <? $styleIt = <<<HERE "border-width: $size$sizeType; border-style: ridge; border-color: green;" HERE; print "<div style = $styleIt>"; print "</span>"; ?> </center> </body> </html>
Comment