On 9/14/2023 4:39 AM, Bob Eager wrote: > On Thu, 14 Sep 2023 08:39:03 +0000, Bob Eager wrote: >> How about: >> >> <h2 id="tag<?php>xxxxx</h2> ? > > Sorry, should be: > > <h2 id="tag<?php">xxxxx</h2> ? That does not contain any PHP code so it is outputted as is. But: <h2 id="<?php echo "abc"?>">xxxxx</h2> outputs: <h2 id="abc">xxxxx</h2> Arne