<?php
require_once("text_change.php");
?>
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE>EXAPLE AND SYNTAX</TITLE>
<STYLE>
.my_css {
background-color: red;
color: black;
}
.n_t {
color: blue;
}
</STYLE>
</HEAD>
<BODY>
<H1>LOL</H1>
<?php
#one time function
$t = new text_change(false, 0, true, "my_css");
$t->add_change("WARNING!");
$text = $t->print_changes("WARNING! UNEXPECTABLE VALUES IN THE CURRENT FILE");
echo $text;
?>
<HR>
<?php
#multiples values
$m = new text_change(true, 5, true, "n_t");
$m->add_change("numeros");
$m->add_change("7");
$m->add_change("favoritos");
$m->add_change("12");
$texto = $m->print_changes("Los numeros 7 y 12 son mis favoritos entre todos los numeros que hay en el Universo.");
echo $texto;
?>
</BODY>
</HTML>
|