<?php
require_once 'class.relink.php';
$htaccessFile = './htaccess-example';
$c_relink = new RELINK($htaccessFile);
echo '<a href="'.$c_relink->replaceLink('?page=blog').'">View blog</a> | ';
echo '<a href="'.$c_relink->replaceLink('?page=blog&mode=edit').'">Edit Blog</a> | ';
echo '<a href="'.$c_relink->replaceLink('?info&value=all').'">Show all information</a>';
?>
|