Bet you're getting tired of my dumb questions... im trying though.
I searched the forum for something like this but i didnt find anything very usefull and if i did come across something i prolly didnt know waht i was looking at..
here's what im trying to do... Im trying to make a text box that i can have someone put data into, in a delimited format, (1 line = 1 record(row)... <tab> delimited) hit submit and have the data inserted into the database.
for example this is my form:
Code: Select all
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form name="form1" method="post" action="proccess.php">
<p>
<textarea name="data" cols="100" rows="25"></textarea>
</p>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
</body>
</html>