I'm pretty new with PHP. I'm having trouble with a form I'm working with.
Here is my HTML
<form class="form-horizontal" action="submit.php">
<div class="form-group">
<label for="name" class="col-sm-2 control-label">Name:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="name" name = "name" placeholder="John Doe">
</div>
</div>
<div class = "form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email:</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="email" name = "email" placeholder="name@domain.com">
</div>
</div>
<div class="form-group">
<label for="phoneNumber" class="col-sm-2 control-label">Phone:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="phoneNumber" name = "phoneNumber" placeholder="555-555-5555">
</div>
</div>
<div class="form-group">
<label for="major" class="col-sm-2 control-label">Major:</label>
<div class="dropdown">
<button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" name = "major" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
Dropdown
<span class="caret"></span>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1"></ul>
</div>
</div>
<hr>
<div class="form-group">
<label for="itemForSale" class="col-sm-2 control-label">Item for Sale:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="itemForSale1" name = "itemForSale1" placeholder="My old video games, some chairs, some chicken, a pizza.">
</div>
</div>
<div class="form-group">
<label for="quantity" class="col-sm-2 control-label">Quantity:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id = "quantity1" name = "quantity1" placeholder="1,000,000">
</div>
</div>
<div class="form-group">
<label for="major" class="col-sm-2 control-label">Price:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="price1" name = "price1" placeholder="ex. $100.00">
</div>
</div>
</form>
Here is my PHP
<?php
// Variables
$name;
$email;
$phone;
$major;
$itemForSale1;
$quantity1;
$price1;
$itemForSale2;
$quantity2;
$price2;
$itemForSale3;
$quantity3;
$price3;
ini_set('display_errors', 'On'); ini_set('html_errors', 0); error_reporting(-1);
if (isset($_POST["submit"]))
{
// Initiate the variables
$name = $_POST["name"];
$email = $_POST["email"];
$phone = $_POST["phone"];
$major = $_POST["major"];
$itemForSale1 = $_POST["itemForSale1"];
$quantity1 = $_POST["quantity1"];
$price1 = $_POST["price1"];
$itemForSale2 = $_POST["itemForSale2"];
$quantity2 = $_POST["quantity2"];
$price2 = $_POST["price2"];
$itemForSale3 = $_POST["itemForSale3"];
$quantity3 = $_POST["quantity3"];
$price3 = $_POST["price3"];
// IF name is empty string
if($name == "")
{
// Alert the user
echo "Please enter your name.";
}
// IF email is invalid
if (!filter_var($email, FILTER_VALIDATE_EMAIL) === true)
{
// Alert the user
echo("$email is an invalid email address");
}
// Strip any occurrences of '-' in phoneNumber
str_replace("-", "", $phoneNumber)
// IF phoneNumber does not equal 10 characters
if(strlen(phoneNumber) != 10)
{
// Alert the user
echo "Invalid phone number. Ex. 315-555-5555";
}
// IF itemForSale is empty string
if($itemForSale == "")
{
// Alert the user
echo "You must enter at least one item.";
}
// IF quantity1 is less than 1
if($quantity1 < 1)
{
// Alert the user
echo "You can't sell anything less than one item.";
}
// Strip any occurrences of '$' in price
str_replace("$", "", $phoneNumber)
// IF price is less than 0.00
if($price1 < 0)
{
echo "What's less than free?";
}
echo $name;
echo $email;
echo $phone;
echo $major;
echo $itemForSale1;
echo $quantity1;
echo $price1;
}
?>
When I press submit on my form I get the 500 Internal Server Error. Any idea what might be causing this? I'm not very familiar with PHP sooo.