php_highligh/index.php
<?php
echo '<form method="POST" action="index.php?">
<textarea name="data" style=\'width:550px;height:200px;resize:none;border:4px solid #8f8f8f\'>';
$data=$_POST['data'];
echo htmlentities($data);
echo '</textarea><br><input type="submit" name="accion" value="enviar"></form>';
if ($_POST[accion]=='enviar'){
$data=highlight_string($data,true);
echo "<br>$data<br><br>";
$data=htmlspecialchars($data);
$data="<div style='background:#F5FDF4;padding:6px'>$data</div>";
echo "<textarea cols=80 rows=40>".($data)."</textarea>";
}
No hay comentarios:
Publicar un comentario