As the title states, I have a multiline textbox that I need to copy/paste multiple values into ( that'd exist on each line ) and have them turn into an array, which would build an SQL In statement. I'm already doing this with a listbox that works perfect, but can't figure out doing it with a textbox
My textbox is named form_payment_inv with multiline enabled.
Example of a copy/paste
1234
5678
Desired output would be
IN ('1234','5678')