concatenarla:
Código PHP:
echo '<input type="hidden" name="usuario" value="'.$usuario.'">';
embeberla:
Código PHP:
<?php //bloque php ?>
<!--bloque HTML-->
<input type="hidden" name="usuario" value="<?php echo $usuario; ?>">
<!--bloque HTML-->
<?php //bloque php ?>