I don't know the best way to title this, but basically what I want to do is something like this:
The user will be presented with a page that has a form. They'll have the ability to input their name, a bio, and then links to anything. I want to be able to allow the users to input as many links as they want. (Ex: "add another")
This would create another <input type="text> tag that they can put the link into.
How would I handle that in PHP/MySQL to submit the query?
As of now I do something like:
update_info($name,$bio,$link1,$link2,$link3,$link4){...}
But, as you can see that's not efficient and the users are limited to the amount of links they can add.