database has php value saved like that as string
<?php $s = 'my name is'; ?>
and what am trying to do is calling the value as php code and want when type echo $s; to print my name is but now it's given my empty value see the code below to get what i mean
<?php
  $b = '<?php $s = 'my name is';?>';
  echo $b; //empty value
?>
 
     
    