Ah, right click, drag, select, pick "copy" from context menu---😉
No, in seriousness, what do you mean by "copy?"
PHP is full of functions to manipulate strings, read files, etc.
For example, make a file ($filename) like this...
line one is this
line two is that
Read it with 'fread()':
$stuff=fread($filename, 1000);
Split it up with strtok(), perhaps:
$this=strtok($stuff, "\n");
There are lots of ways to do this type of thing. Head on over to the manual at php.net and check 'em out...!
🙂