i made a post form in html, but i have multiple choices so once the user clicks one of the choices then it will redirect them to the page each choice have a different choice can you all advice how can i achieve that? im coding in PHP.
      echo "<form action='home.php' method='post'>";
      echo "<input type='submit'  name='submit' value='Yes'>";
      echo "<input type='submit'  name='submit' value='No'>"; 
      // If no i want this button to redirect to another page instead of home.php
      echo "</form>";
I appreciate any help. I know this is very basic T_T
 
     
    