Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

325
Visualizações
How would I be able to set the pages title as content from a text file?

I have a page that needs a dynamically updated title. I have a .txt file that is dynamically updated by another script on my website, and I would like to set the content of that file as the page title (the <title> tag). Can somebody help me?

about 4 years ago · Juan Pablo Isaza
2 Respostas
Responde à pergunta

0

follow the below example, I am not tested it but try it once

<?php
   $data = fopen("c:\\folder\\testing.txt", "r");
   $ln_array = [];
   $fp = fopen("testfile.txt", "r");
   while (!feof($fp)) {
       // do stuff to the current line here
       array_push($ln_array, $fp);
   }
   fclose($fp);

?>
about 4 years ago · Juan Pablo Isaza Relatório

0

In PHP, you can read the txt file and make à echo later

<!DOCTYPE html>
<html lang="en">
<head>
    <?php
      $myfile = fopen("file.txt", "r") or die("Unable to open file!");
      $content = fgets($myfile);
      fclose($myfile);
    ?>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title><?php echo htmlspecialchars($content, ENT_QUOTES, 'UTF-8'); ?></title>
</head>
<body>
    
</body>
</html>
about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda