I am using the code below:
<form>
<textarea cols="50" rows="4" name="link"></textarea>
<textarea cols="50" rows="4" name="notes"></textarea>
<input type="submit" value="Submit">
</form>
I need code to insert it into a MySQL database and then code to display the contents of that MySQL database in a long list of link and notes going like:
link
note
2link
2note
but without the number 2 and in either a PHP or HTML file or both.
How would I accomplish this?
Regards!