We were testing Taconite a long time ago and this is a basic usage. Since we now use an internal AJAX framework, we release this snippet so someone might get an idea how to use this framework. It’s nothing fancy, only a simple snippet.
foreach ($vDatas AS $vTag=>$vCols) {
$vTmp = ”;
foreach ($vCols AS $vOne) {
$vTmp .= ‘
‘;
} // rof
$o .= ‘
$o .= $vTmp;
$o .= ‘
} // rof
$o .= ‘‘;
Header(“Content-Type: text/xml”);
echo($o);
exit();
Leave a Reply