This topic is locked
[SOLVED]

 Create a text area where list of numbers can be pasted

6/30/2011 10:17:01 AM
PHPRunner General questions
T
text author

Hi
I'd like to add a feature to an add page that would allow users to paste a list of numbers into a text area and then those numbers are posted into a MYSQL database. I know there is a built in import feature in phprunner but wondered if anyone had come across a script.
cheers
Richard

C
cgphp 6/30/2011

Hi Richard,
the PHP "explode" function, in the "Before Record Added" should accomplish this task.

List of numbers has to be separated by a delimiter (for example a comma or a space).

T
text author 6/30/2011

Hi Cristian
Thanks very much - great thought!
cheers
Richard



Hi Richard,
the PHP "explode" function, in the "Before Record Added" should accomplish this task.

List of numbers has to be separated by a delimiter (for example a comma or a space).