I'm trying to do a multiple textbox with the same names.
Here is my code.
HTML Email 1:<input name="email" type="text"><br> Email 2:<input name="email" type="text"><br> Email 3:<input name="email" type="text"><br> PHP $email = $_POST['email']; echo $email;
I wanted to have a results like this:
[email protected], [email protected], [email protected]
How can I do that? is that possible?