Login   Register  
PHP Classes
elePHPant
Icontem

File: news.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Huda M Elmatsani  >  Clean URL  >  news.php  >  Download  
File: news.php
Role: Example script
Content type: text/plain
Description: example script
Class: Clean URL
Transform URLs to make them search engine friendly
Author: By
Last change:
Date: 2004-11-06 22:06
Size: 435 bytes
 

Contents

Class file image Download
<?php
require("class.cleanurl.php");

$clean = new CleanURL;
$clean->parseURL();
$clean->setRelative('relativeslash'); //relativeslash is variable name
$clean->setParts('id','page');
echo 
'result query string:<br>';
echo 
'id = '.$id '<br>';
echo 
'page = ' $page '<br>';

?>
<br>
Example Clean URL usage:  <br>
<a href="<?=$relativeslash?><?echo $link=CleanURL::makeClean('news.php?id=120&page=2');?>"><?=$link?></a>