Hola
jpisanu
Si lo que quieres es diferenciar entre :
Mi nombre es y $nombre podrias trabajar con los CSS de la siguiente manera :
Código PHP:
-----------------------------
<html>
<head>
<title>Prueba</title>
<style type="text/css">
<!--
.Estilo1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #0000FF;
font-weight: bold;
}
-->
</style>
</head>
<body>
<?php
$nombre="Juan";
echo "Mi Nombre es :<span class='Estilo1'>".$nombre."</span>";
?>
</body>
</html>
Espero te ayude
Salu2