I am having a problem with this code:
$myvariable = "<?php $user_id = '5'; ?>";
...now I then write it to file using php...
and this is what I see when I open the saved file:
<?php = '5'; ?>
$user_id is missing!
Why is this happening and is there a way to fix this problem?
"quoted strings, which will happen before you save string to file action.