Hi, im trying to create a site for this artistic web project idea I had but for it I neeed the form to be sent to two different web pages. I understand how to make the form. And from what I have learned so far the forms action tag needs to go to a php page to run a script. And that code would perform the action that would cause two separate pages to open in the background. Maybe this is not possible I am not sure. Below would be an example of the form.
<form name=”form” id=”form” action=”art.php” method=”post”>
happy<input type=”text” name=”happy” id=”happy”/>
sad<input type=”text” name=”sad” id=”sad”/>
<input type=”submit” value=”submit”/>
</form>
and so everything is sent to the art.php but after that I do not know what to do to make it send the form data to two different web pages. I've looked all over and its always possible I overlooked how to do this, but I was unable to find the relevant info
If there is a way to do this?