Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <tr>
  2. <p> Olá, <?php echo $nome ?>! </p>
  3. </tr>
  4. <tr>
  5. <p>
  6. Há um novo protocolo referente ao documento nº <?php echo $controle ?>.
  7. </p>
  8. </tr>
  9.  
  10. $body = '<tr>
  11. <p> Olá, [NOME]! </p>
  12. </tr>
  13. <tr>
  14. <p>
  15. Há um novo protocolo referente ao documento nº [CONTROLE].
  16. </p>
  17. </tr>';
  18.  
  19. // Dados
  20. $nome = 'Gabriel Rodrigues';
  21. $controle = 'Dados do Controle';
  22. // Substituindo Macros pelos valores.
  23. $body = str_replace('[NOME]', $nome, $body);
  24. $body = str_replace('[CONTROLE]', $controle, $body);
  25. echo $body;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement