输入字段不显示完整数据

I need show the full data on input but it doen not show the full name.

$nombreC = $r['nombre_cliente'];    
    <legend><h4>CAMPOS DEL CLIENTE</h4></legend>
      <label for="nomCliente">Nombre del Cliente:</label>
      <input type="text" name="nomCliente" value = '.$nombreC.' />
    </legend>

I suppose it must show: Claudia Nevarez but the result is: Claudia.

Please, anyone can tell me how can I show the complete data of the value?

When I do echo '$r['nombre_cliente']' out the input, it shows the full name.


UPDATED

I forget something, I can show the full code, I read your comments, yes, I did put the echo $r['nombre_cliente'] but it still doesn't work.

  echo '          
     <!--  CAMPOS DEL CLIENTE -->
  <fieldset id="infoCliente">
    <legend><h4>CAMPOS DEL CLIENTE</h4></legend>
      <label for="nomCliente">Nombre del Cliente:</label>
      <input type="text" name="nomCliente" value = "echo $r['nombre_cliente'];" />
</fieldset>
'

It should be as simple as:

 echo '          
         <!--  CAMPOS DEL CLIENTE -->
      <fieldset id="infoCliente">
        <legend><h4>CAMPOS DEL CLIENTE</h4></legend>
          <label for="nomCliente">Nombre del Cliente:</label>
          <input type="text" name="nomCliente" value= "'.$r['nombre_cliente'].'" />
    </fieldset>

'

Or

$format =  '          
     <!--  CAMPOS DEL CLIENTE -->
  <fieldset id="infoCliente">
    <legend><h4>CAMPOS DEL CLIENTE</h4></legend>
      <label for="nomCliente">Nombre del Cliente:</label>
      <input type="text" name="nomCliente" value="%s" />
</fieldset>
';
echo  sprintf($format,$r['nombre_cliente']);

Try below code.

$nombreC = $r['nombre_cliente']; CAMPOS DEL CLIENTE Nombre del Cliente: " />

You are not putting $nombre variable under PHP tags.