If you respond, please give an example as my "expertise" is "nil".
In searching this forum, I've come up with:
txtfile.txt
one=this is the first section
two=this is the second section
three=this is the third section
AND
PHP Code:
<?php
list(, $content) = explode('two=', file_get_contents('txtfile.txt'));
echo $content;
?>
Problem being: "
this is the second section three=this is the third section" displays, rather than "
this is the second section".
From what I see here, "trim" can be used to solve this.
After several hours, trying every possibility I could think of, I am admitting defeat and begging for help...please.