Skip to content

Getting a substr of a {{ var }} in php

I am populating a HTML table: This yields: 61 event 40012345 substr( 40012345, 0, 24) 60 event 4001234 substr( event has a very long description. The list should show a 25 char substring., 0, 24) Thanks…Dan’l Answer Reorganize your html/php: You can also use Laravel Helpers for string related vari…

How to preserve formatting and protect the code from scripts

I am trying to find a way to escape the scripts or tags inserted to my database and at the same time preserve the text formatting. However I bumped into several problems that only solved either of the two. I’m trying to do it in $blog[‘title’] and $blog[‘content’] I tried using n…