Added AJAX + CyrLat class usage demo
No need to reload page! Ajax-technology do it for you. See examples on my phpclasses page
Yaroslav (Jahroslav) Shapoval write about his vision of using PHP, PEAR, MySQL, XML.
<?php
# I don't think any comments needed at all, but…
require_once("PEAR.php");
require_once("Benchmark/Timer.php");
# initialize $timer
$timer=new Benchmark_timer;
# begin time counting
$timer->start();
# doing smth
echo "Hello, World!\n<br>";
# stop time counting
$timer->stop();
# show result
echo "Time elapsed: ".$timer->TimeElapsed();
?>
That's all. [Hi, Max :)]Read docs for Benchmark::Timer, and you'll find very interesting function setMarker().