faqts : Computers : Programming : Languages : PHP : Common Problems : Forms and User Input

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

6 of 12 people (50%) answered Yes
Recently 4 of 10 people (40%) answered Yes

Entry

how can i input a list from a textarea into an array(one per line)?

Dec 12th, 2001 22:39
Philip Olson, Rick Terry,


Try the following:
  $lines = explode("\n",$textareastring);
  http://uk.php.net/manual/en/function.explode.php