El codigo que estoy usando es:
Código PHP:
$categoria = $_GET["categoria"];
$titulo = $_GET["titulo"];
$contenido = $_GET["contenido"];
$ruta="file/".$categoria."/".$titulo."/".$contenido;
$fp = fopen($ruta,"r"); //$ruta es nuestro archivo .doc
$char = fgetc($fp);
$charant = NULL; $cantNull = 0;
while($cantNull<120)
{
$char = fgetc($fp);
if ($char=="\0" && $charant=="\0")
{
$cantNull += 1;
} else {
$cantNull = 0;
}
$charant = $char;
}
$text="\0";
while($text=="\0")
{
$text = fgetc($fp);
}
echo $text;
while($text!="\0")
{
$text = fgetc($fp);
echo nl2br($text); //nl2br convierte los saltos de linea en <br />
}