Code:
<!DOCTYPE HTML> <html> <head> </head> <body> <form action=somefile.php method="post"> <?php echo="Hi" ?> <H2>Pizza</h2> <br> <h3>Toppings</h3> <br> <input type="checkbox" name="toppings[]" value="Pepperoni">Pepperoni<br> <input type="checkbox" name="toppings[]" value="Mushrooms">Mushrooms<br> <input type="checkbox" name="toppings[]" value="Anchovies">Anchovies<br> <input type="checkbox" name="toppings[]" value="Chicken">Chicken<br> <input type="checkbox" name="toppings[]" value="Green Peppers">Green Peppers<br> <input type="checkbox" name="toppings[]" value="Tomatoes">Tomatoes <br></br> <h3>Sizes</h2> <input type="radio" name="sizes" value="12" >12 <input type="radio" name="sizes" value="14">14 <input type="radio" name="sizes" value="16">16 <br><br> <input type="submit" name="continue" value="continue"> </form> </body> </html>
I set the chmod for the PHP page to 644 and my html is 755. Should it also be 644? Or some other permission? Thanks.
Comment