I want to allow people to use PHP inside of a textarea of a Wordpress Admin Panel
<textarea cols="70" rows="5" name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>" type="<?php echo $value['type']; ?>" />
<?php echo stripslashes(get_settings($value['id'])); ?>
</textarea>
Will allow HTML usage, however not PHP...
UPDATE: Let me clarify. I can enter PHP in the form but it wont print on the front-end
<p><?php echo stripslashes($tt_vanity_box); ?></p>
Well it's for the footer on a wordpress theme...called "vanity". Where the user can enter copyright info etc. Example:
© <?php echo date('Y'); ?> <a href="http://mysite.com">My Company</a>