Hey all from what I can tell my code looks like it should work but it's not. I am not seeing where my error is. When I fill out the form and press submit I am able to get the first variable for name, but phone and email do not show up. Can someone point out where my error(s) are? ` Form Test
<body>
<form action="clientData.php" method="post">
What is your name?
<input type="text" name="name">
<br>
What is your email address?
<input type ="text" email="email">
<br>
What is your phone number?
<input type = "text" phone="phone">
</br>
<input type="submit">
</form>
</body>
</html>`
And here is my clientData.php file where I want to store my variables to insert into my database.
<?php
$clientName= $_POST['name'];
$clientEmail= $_POST['email'];
echo $clientName;
echo $clientEmail;
?>