How do I process a variable that was embedded within a string? The string came from a database, so here is an example:
1: $b='World!';
2: $a='Hello $b'; #note, I used single quote purposely to emulate the string was originally from the database (I know the different of using ' or ").
3: eval($c=$a.";"); #I know this would not work, but trying to do $c="Hello $b";
#With line 3 PHP code, I am trying get the outcome of $c='Hello World!';