@wiwi74
Cita:
Iniciado por wiwi74 Mira:
echo '<font color=\'red\'>Rojo :</font><br />';
echo '<font color="red">Rojo :</font><br />';
echo '<font color=\"red\">Verde :</font><br />';
echo '<font color=\"red">Azul :</font><br />';
WOW!!! como funciona eso? nuna antes habia visto eso xD
@xpitutox
y esto:
Código PHP:
Ver original<?php
echo '<font color=\"Red">Centro Costos :</font> '.$_REQUEST ["txtcostos"].'<br>';
echo '<font color=\"Red">Solicitante :</font> '.$_REQUEST ["txtnombre"].'<br>';
echo '<font color=\"Red">Nombre Trabajador :</font> ' . $_REQUEST ["txttrabaja"].'<br>';
echo '<font color=\"Red">Impresion B/N :</font> '.$_REQUEST ["txtimpresion"].'<br>';
echo '<font color=\"Red">Impresion Color :</font> ' .$_REQUEST ["txtcolor"].'<br>';
echo '<font color=\"Red">Sacanner :</font> '.$_REQUEST ["txtscan"].'<br>';
echo '<font color=\"Red">Hoja Oficio Blanca :</font> '. $_REQUEST ["txtoficio"].'<br>';
echo '<font color=\"Red">Hoja Carta Amarilla :</font> '.$_REQUEST ["txtcamarilla"].'<br>';
echo '<font color=\"Red">Hoja Oficio Amarilla :</font> '.$_REQUEST ["txtoamarilla"].'<br>';
echo '<font color=\"Red">Hoja Doble Carta Bound Blanca :</font> '.$_REQUEST ["txthdoblec"].'<br>';
echo '<font color=\"Red">Corchetes :</font> '.$_REQUEST ["txtcorchetes"].'<br>';
echo '<font color=\"Red">Opalina Oficio Blanca :</font> ' .$_REQUEST ["txtopab"].'<br>';
echo '<font color=\"Red">Opalina Oficio Color :</font> '.$_REQUEST ["txtopac"].'<br>';
echo '<font color=\"Red">Lomo Negro Carta Narrow :</font> '.$_REQUEST ["txtlomonc"].'<br>';
echo '<font color=\"Red">Lomo Negro Carta Medium :</font> '.$_REQUEST ["txtlomoncm"].'<br>';
echo '<font color=\"Red">Lomo Negro Oficio Narrow :</font> '.$_REQUEST ["txtlomono"].'<br>';
echo '<font color=\"Red">Lomo Negro Oficio Medium :</font> '.$_REQUEST ["txtlomonom"].'<br>';
echo ''.'<br>';
echo ''.'<br>';
echo '<a href="index.php">Volver</a> <br>';
?>
lo puedes cambiar a esto:
Código PHP:
Ver original<font color="red">Centro Costos: </font><?=$_REQUEST["txtcostos"]?></br>
<font color="red">Solicitantes: </font><?=$_REQUEST["txtnombre"]?></br>
y asi sucesivamente