View Single Post
Old 01-10-2004, 10:03 PM   #1
fr :: anonymus
Green Mole
 
fr :: anonymus's Avatar
 
Join Date: Dec 2003
Location: Lyon, France
Posts: 17
a page generator

Hello,

I made a page generator, who can made so many pages i want.
Ideal for testing a search engine.
The url : http://www.labonneadresse.com/ .

You can test, but dont abuse, otherwise my server will be down..

The code for make it is :
PHP Code:
if (! isset($a))$a="";
if (! isset(
$b)){
    
$b="a";}
else {
    
$b=$b."a";
    }

echo
"<HTML><HEAD><TITLE>".$a."</TITLE></HEAD>";

$temp=$b;
echo
"<BODY>";

echo
"<h1 title='It s not a search engine, but a find engine ... a Finder'><i>Finder -</i></H1><b><a title=''>generator of string ...";

echo 
"<h4>";
echo
" - <a href=\"./finder.php\">home</a>";
echo
"</h4>";

echo
"<center>";
echo
"<p><hr width=75%><p>";

echo
"<H2>".$a."</h2><font size=4>";

for (
$x=0;$x<26;$x++){
    echo
" <a href=\"./finder.php?".(empty($a)?"":"a=".$a."&")."";
    echo
"b=".$b."\">".$b."</a>";
    
$b++;
    }

echo
"<p><hr width=75%><p>";
$b=$temp;

for (
$z=0;$z<26;$z++){
    echo
" <a href=\"./finder.php?a=".(!empty($a)?$a." ":"").$b."&";
    echo
"b=\">".$b."</a>";
    
$b++;
    }
echo
"<p><hr width=75%><p>";

echo
"</center><p>contact@labonneadresse.com</b>";

echo
"</BODY>";
echo
"</HTML>"
I think i made the necessary modif.

Reasons of a such site are in french in the site.


For me, for my site, I had under estimated the place who can take a search engine, and i had stop because site was complete and the 'not indexed site' was enormous.


If you want explains, it's here or email me.

A+, Anonymus.

ps : it's clear ?
fr :: anonymus is offline   Reply With Quote