I am a beginner PHP writer so please bear with me.
I have a simple situation that is sort of like this:
Line 1 $output .= 'ABC'
Line 2 $output .= 'DEFGHIJKLMN'
Line 3 echo $output;
Now, the code within my 'DEFGHIJKLMN' string has become super long. I am thinking about moving the content of 'DEFGHIJKLMN' to an external file for ease of editing, and somehow make the new file append to the end of $output.
So now I need to edit Line 2 to target the external file.
Please let me know how to do this, thank you.