I have a form with multiple inputs and want to send this data when click on submit button to more than php page at the same time
index.html
<html>
<head>
<title>SO Example</title>
</head>
<body>
-----------------------------------------------------------------------
<form action="index1.php , index2.php2" method="POST">
-----------------------------------------------------------------------
<!--Putting inputs here -->
<button type="submit" name="submit">UPLOAD</button>
</form>
</body>
</html>
Same form data to different pages ,is there any way to do that !