Search code examples
phpformsaction

Using multiple forms in php but only one of them is working


Does a single php page contain more than 2 forms? If yes, how can we use it?


Solution

  • Php does not support multiple form action in one form. Instead we can use mltiple submit buttons with unique names so that in php section we can redirect to any page using that button name.