Hello,
I have a full text that I wish to toggle.
I have:
if (strlen($fulltext) > '300')
{
$text = substr($fulltext, 0, strrpos(substr($fulltext, 0, 300), ' '));
}
That cut the text at 300 characters. Now, how do I get the balance of the text that is after the 300 characters? (So when I click on my toggle I reveal only the missing text)
Thank you