In a situation where little snippets of PHP are used in the html a lot, like Wordpress, can you use PHP inside PHP echos?
Example:
<?php
echo "<?php the_author_meta('description'); ?>";
?>
As unnecessary as that may be, can it even be done? If not, one aspect of PHP that still seems to confuse me slightly is how to end and restart PHP when outputting HTML.
Case in point, Chris' answer here: How can I echo HTML in PHP? - I want so badly to put a ?>
at the end of his example, but that causes errors. Can someone point me in the direction of some comprehensive info of how this starting/stopping with PHP works when blending with HTML, HTML that itself may use PHP snippets in it.