<?php
require('class.ajax_to_iso.php');
$ajax2iso = new ajax_to_iso;
// string with special chars
$string = 'ë ç Ë Ç € ä ö ü';
echo('<p>These are the chars before converting: ' . $string . '</p>');
$string = $ajax2iso->to_iso($string);
// output de converted chars
echo('<p>These are the chars after converting: ' . $string . '</p>');
?>
|