I have this code:
<?php
$my_var= `<script>
</script>`;
dd($my_var);
as a result, I got that $my_var
is NULL which is not. How I can solve the problem... I know I can use a single or double quote but I don't want that.
I also disable shell_exec
from PHP settings...
How to solve the problem? All I need is to get the string variable...