I am trying to create the following:
<code>
echo "some text" . $d;
</code>
Because $d is a temporary code with a couple of dashes and plus signs in it, I want to print the "some text" in normal font. But I'd like to enlarge the echo of $d for easy viewing since it's a critical variable to the form.
I've tried using the Hn Header sizes and they work, BUT they also force a line break between the normal text and the Hn text. In other words, I get:
some text
$d
instead of:
some text: $d. e.g. Some text: the $d result
How can I get the text AND the code to all appear on the same line?
I know it's going to be a simple answer, but I haven't been able to get a hold on it. :o
TIA,
Rivet`