I have a file text.txt with this content:
"content=Fortuna Demo - Secret love"
I use this php code to view the .txt file content:
<?php
$txtfile = file("text.txt");
$data = implode("<br>",$txtfile);
echo $data;
?>
But I want to view only a part of text "Fortuna Demo - Secret love" and remove the this part: "content="
Can you help me?