I'm completely lost at how to go about this, or even if it's even possible.
I want it so that what I have stored in the database, if it's PHP to be run.
For example, I have a table called content and a field called body.
That field called body contains "Testing 123 <?php echo "Testing 456"; ?>"
When I run the query, mysqli_query($con,"SELECT * FROM content")
and echo out the body, $row[body]
the page only gets "Testing 123"
and if I view the source code I can physically see
<?php echo "Testing 456"; ?>
So is there a way to take what's in that field, and run the PHP if any exists in it?