School Map:  Home / Enroll $ Student Records; Class  
$ News @ LIVE Tech Radio * Support/FAQ | Store | FORUMS

Class / Forums / php101 Refresh the current page Week #8 ADVANCED To-Do Assignment, post here
 

 (#15 2003-08-07 16:51:03) Post Reply

TDavid
php mySQL Perl C/C++
Principal


Enrolled: Mar 2000
Posts: 193
AP: 1

Week #8 ADVANCED TO-DO ASSIGNMENT: Write a script to randomly choose a URL and redirect the surfer when clicked. Make the URL a javascript mouseover so that it is a blind link so the person clicking will not see the result in the browser status window. Include security measures to ensure the script call is only coming from Adult Netsurprise or your server and make sure that the URL looks like a valid URL before redirecting the surfer if it does not look valid than redirect to a different URL.

Post this assignment here so that we can offer comment/critique for you, but also post a URL to the working copy of the script and the complete source code of the script in your post.

scriptname.php <-- script name

Good luck to you!

 

 (#85 2003-08-23 12:48:08) Post Reply

Sk8rRIMuk
Need To Set


Enrolled: Aug 2003
Posts: 39
AP: 1

I have a question regarding the advanced tutorial for week 8 PHP, if I were to put security on to make sure whatever came after ?url= was in the typical URL format wouldn't it defeat the random link purpose. The secutiry would not allow ?url=ran.

Would it be possible to define rules such as, it must be http://www.<whatever>.<whatever> or ran? if so how would I do this?

 

 (#86 2003-08-23 17:55:56) Post Reply

TDavid
php mySQL Perl C/C++
Principal


Enrolled: Mar 2000
Posts: 193
AP: 1

I don't really understand the question, perhaps you can supply an example of what you mean. Sorry :(

 

 (#87 2003-08-23 20:10:34) Post Reply

Sk8rRIMuk
Need To Set


Enrolled: Aug 2003
Posts: 39
AP: 1

Heres my code:


<?php
//Check to see if they came from my site or forums
if($HTTP_REFERER=="http://www.katikai.com/ee/assignment/"OR$HTTP_REFERER=="http://class.scriptschool.com/forums/php101/view/15/"OR
$HTTP_REFERER=="http://www.katikai.com/ee/assignment/Week%20%238%20Advanced%20To-Do%20Assignment.php")
//If they did come from the site or forums go ahead and display code
{
if(
$url!=""){
if(
$url=='rnd'){
$urls=array(
'http://www.n00bstories.com/',
'http://www.scriptschool.com/',
'http://www.google.co.uk/',
'http://www.katikai.com/');
srand(time());
$count=count($urls);
$result=rand(0,$count);
$url=$urls[$result];
if(
ereg("http://www..+..+ ",$url)){
header("Location:$url");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Week #8 Advanced To-Do Assignment</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
</head>
<body>
<center>
<a href="http://www.katikai.com/ee/assignment/Week%20%238%20Advanced%20To-Do%20Assignment.php?url=rnd"
onMouseOver="window.status='View a random URL via this nifty script'; return true;"
onMouseOut="window.status='';">Random URL Viewer</a>
<br /><a href="http://www.katikai.com/ee/assignment/Week%20%238%20Advanced%20To-Do%20Assignment.php?url=http://wwwn00bstoriescom"
onMouseOver="window.status='View a random URL via this nifty script'; return true;"
onMouseOut="window.status='';">Random URL Viewer</a>
<?php
}{print("Sorry but your URL does not appear
to be in the correct format please use a valid URL.</BODY></HTML>"
);}
}
}
//If they didn't come from the site or forums display error
}else{print("<center>You are trying to enter this page via a bookmark, typein or illegal domain please go to the orignal page link (provided below), we only allow
direct links to this page for <b>Security Reasons</b>.<br /><a
href="
http://www.katikai.com/ee/assignment/">Click this and follow the correct
linktothispage</a>.<br/><i>Thankyouandsorryforanyinconveniecethismay
ofcaused
</i></center>");}
?>
</center>
</body>
</html>




Basically I want the ereg of $url to accept things in the format of 'http://www.anything.anything' and also in the format of 'ran'.

I just can't get the security to make sure the url is in the right format to work, it just keeps making the page appear as </center></body></html> (with no other code) :(

 

 (#190 2003-09-11 07:06:18) Post Reply

Quicksaver
Need To Set


Enrolled: Sep 2003
Posts: 90
AP: 1

when i added proctetion to make sure a valid url is entered i also added a bad url to test that part of the script, in theory what i done is "while an invalid url is entered, keep doing the choose the url routine till a valid comes up" and now, it does a timeout of 3 seconds on the lines of the while() loop, what could be causing this timeout? evryhing looks fine to me :S


<?
$mydomain
= "http://quicksaver.coolfreepage.com/";
$otherdomain = "http://class.scriptschool.com/forums/php101/view/15/";

if(
eregi("$mydomain", $HTTP_REFERER) || eregi("$otherdomain", $HTTP_REFERER)) {
if(
$to == "ok") {
mt_srand(time());
$keepon = "no";
$urls = array("http://www.tdscripts.com/", "http://www.scriptschool.com/", "http://www.php-scripts.com/", "http://www.casinoluckydog.com/", "http:www.somethin.com");
while(
$keepon = "no") {
$choose = mt_rand(0, (count($urls))-1);
$to = $urls[$choose];
if(
eregi("^http://(.+)\.(.+)", $to)) { $keepon = "yes"; } else { $keepon = "no"; } }
header("Location: $to"); } } else {
print(
"Please access this page through the adequate links <a href=\"$mydomain/redirectassignement8advanced.php\">here</a> and <a href=\"$otherdomain\">here</a>, thank you.");
exit(); }
?>

<a href="http://quicksaver.coolfreepage.com/assignement8advanced.php?to=ok"
onMouseOver="window.status='Well? Click it.'; return true;"
onMouseOut="window.status='';">link</a>


working url

 

 (#191 2003-09-11 07:21:02) Post Reply

Quicksaver
Need To Set


Enrolled: Sep 2003
Posts: 90
AP: 1

to sk8r: could you upload your code, cuz i really dont understand what your problem is, all i (think i)got is that you want this:


<?
if(eregi("http://www\..+\..+", $string) || eregi("ran", $string))
?>



even tho i dont understand why you want it, i think i need to see whatever error you say you're having, or you can wait for the more experient TDavid :)

 

 (#192 2003-09-11 10:07:51) Post Reply

Quicksaver
Need To Set


Enrolled: Sep 2003
Posts: 90
AP: 1

oh, and in the last part of the code, when you do the link, you forgot to put the backslashes before the double quotes i think

 

 (#243 2003-09-18 05:48:17) Post Reply

Shrek
Need To Set


Enrolled: Aug 2003
Posts: 33
AP: 1

My Week #8 Advanced Assignment

HTML http://members.lycos.co.uk/jef...an/class08a.htm

PHP http://members.lycos.co.uk/jef...an/class08a.htm

Unauthorize link http://jeffkwan.150m.com




<?
$allowserver1
="members.lycos.co.uk";
$allowserver2="class.scriptschool.com";
$allowserver3="localhost";
$allowserver4="www.adultnetsurprise.com";

if(!
$_SERVER['HTTP_REFERER'])
{
echo (
"U ARE NOT ALLOWED TO USE THIS DYNAMIC LINK THRU BOOKMARK OR DIRECT TYPE IN THE LINK. </br>");
echo (
"Click <a href='class08a.htm'>HERE</a> to LOGIN. <br>");
exit();
}
if(!
eregi($allowserver1,$_SERVER['HTTP_REFERER'])
and !
eregi($allowserver2,$_SERVER['HTTP_REFERER'])
and !
eregi($allowserver3,$_SERVER['HTTP_REFERER'])
and !
eregi($allowserver4,$_SERVER['HTTP_REFERER']))
{
echo (
"U ARE NOT ALLOWED TO USE THIS DYNAMIC LINK FROM UNAUTHORIZED WEBSITE REFERER. </br>");
echo (
"Click <a href='class08a.htm'>HERE</a> to LOGIN. <br>");
exit();
}
$in=$_REQUEST['in'];
if(
$in != "") {
if (
$in == "rnd") {
$urls = array("http://www.tdscripts.com/",
"http://www.scriptschool.com/",
"http://www.php-scripts.com/",
"http://www.yahoo.com/");
srand(time());
$count = count($urls);
$result = rand(0,$count);
$in = $urls[$result];
}
header("Location: $in");
}
?>

<HTML>
<TITLE>Class 8 Advanced Assignment</title>
Welcome to suprise Dyanmic Link.</br>
Click <a href=<? $_SERVER['PHP_SELF']; ?>?in=rnd
onMouseOver="window.status='Click This!!!'; return true;"
onMouseOut="window.status='';"> Here </a><br>

</HTML>




 

 (#327 2003-10-18 14:15:42) Post Reply

Quicksaver
Need To Set


Enrolled: Sep 2003
Posts: 90
AP: 1

with some help from a friend, i finnaly fixed my script, i was using the set a variable command instead of the compare one (while($something = "something") instead of while($something == "something")), kinda dumb thing to do huh :P

 

 (#328 2003-10-18 14:16:37) Post Reply

Quicksaver
Need To Set


Enrolled: Sep 2003
Posts: 90
AP: 1

oh yeah, the code :)


<?
global $PHP_self;
$mydomain = "http://quicksaver.coolfreepage.com/";
$otherdomain = "http://class.scriptschool.com/forums/php101/view/15/";
$rightlink = "http://quicksaver.coolfreepage.com/redirectassignement8advanced.php";
$me = "http://localhost";

if(
eregi("$mydomain", $HTTP_REFERER) || eregi("$otherdomain", $HTTP_REFERER) || eregi("$me", $HTTP_REFERER)) {
if(
$to == "ok") {
mt_srand(time());
$urls = array("http://www.tdscripts.com/", "http://www.scriptschool.com/", "http://www.php-scripts.com/", "http://www.casinoluckydog.com/", "http:www.something.com");
$keepon = "no";
while(
$keepon == "no") {
$choose = mt_rand(0, (count($urls))-1);
$to = $urls[$choose];
if(
eregi("^http://(.+)\.(.+)", $to)) { $keepon = "yes"; } else { $keepon = "no"; } }
header("Location: $to"); } } else {
print(
"Please access this page through the adequate links <a href=\"$rightlink\">here</a> and <a href=\"$otherdomain\">here</a>, thank you.");
exit(); }
?>

<a href="<? $PHP_self ?>?to=ok"
onMouseOver="window.status='Well? Click it.'; return true;"
onMouseOut="window.status='';">link</a>


working url

 

 (#355 2003-11-03 08:57:16) Post Reply

Sk8rRIMuk
Need To Set


Enrolled: Aug 2003
Posts: 39
AP: 1

Thanks for the help with the ereg, I also set myself up a local host once I saw yours :)

Heres the URL for my working script: http://www.katikai.com/ee/assi..._assignment.php

As usual here is the URL for all my past projects: http://www.katikai.com/ee/assignment/

And heres my (slightly long coming) script:


<?php

// Array of sites (to be randomly selected)
$url_array = array(
'http://www.php.net/',
'http://www.stargate-sg1.com/',
'http://www.nitrous-oxides.net/',
'http://www.battle-royale.co.uk/',
'http://www.n00bstories.com/');

// Save parse errors by making the refferer into a normal variable
$referer = $_SERVER['HTTP_REFERER'];

// Set the three allowed sites (scriptschool, my server and my testing server)
$site_one = "http://www.katikai.com/ee/assignment/";
$site_two = "http://class.scriptschool.com/forums/php101/view/15/";
$site_three = "http://localhost";

// Make sure that the user has come from an allowed address
if(eregi("$site_one", "$referer") || eregi("$site_two", "$referer") || eregi("$site_three", "$referer"))
{
// Check to see if link has been clicked and is not an empty string
if(isset($_GET['link']) && $_GET['link'] !="")
{
// Check to see if the URL is a valid style
if(eregi("^http://.+\..+", "$referer"))
{
// When all is well randomly pick a url and direct
srand((double) microtime() * 1000000);
$id = mt_rand(0, count($url_array)-1);
$link = $url_array["$id"];
header("Location: $link");
}
else
{
// If the URL is not in the correct style take them to script school
header("Location: <A HREF="http://www.scriptschool.com/");" TARGET=_blank>http://www.scriptschool.com/");</A>
}
}
else
{
// If the link has not yet been clicked display the link
$link = $_SERVER['PHP_SELF'];
$message = "Please click the link below:<br />\n<a href=\"$link?link=yes\"
onMouseOver=
\"window.status='Please Click The Link'; return true;\"
onMouseOut=
\"window.status='';\">go to a random webpage</a>";
}
}
else
{
// If they are not coming from the correct place tell them so
$message="Sorry only people accessing this page via <a href=\"$site_one\">
$site_one</a> or <a href=
\"$site_two\">
$site_two</a> are allowed access to this page."
;
}

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Week #8 Advanced To-Do Assignment</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<p>
<?php print("$message"); // Print the output (when not re-directed) ?>
</p>
</body>
</html>


 

 (#365 2003-11-04 11:14:48) Post Reply

Dest
Need To Set


Enrolled: Oct 2003
Posts: 18
AP: 1

ok i dont know if link from this forum will not cause security error msg, but if so i will fix it. hope it does not ;)

url - http://tts.lt/~sir/scripts/week8enter.php



<?

if(eregi("http://tts.lt/~sir/scripts/week8enter.php|http://tts.lt/~sir/scripts/week8adv.php|
.+(adultnetsurprise).+|.+(scriptschool).+"
, $HTTP_REFERER))

{

if(
$page!="")
{ if(
$page=="rand")
{
$urls=array(
'http://www.google.com',
'http://www.yahoo.com',
'http://www.games.com',
'http://www.games.net',
'http://www.cartoonnetwork.com',
'http://www.eurosport.com',
'http://www.mp3.com');
$count=count($urls);
mt_srand(time());
$number=mt_rand(0, $count);
$page=$urls[$number];
}

if(
eregi("^http://", $page))
{
header("Location: $page");}

else
{
header("Location: <A HREF="http://www.metaeureka.com");" TARGET=_blank>http://www.metaeureka.com");</A> }
}

}
else {print(
"<center>You can't see this page because you came from ");

if(!
$HTTP_REFERER)
{print (
"bookmark or just typed in browser this adress. <br><br> To access this script go to the <a href=week8enter.php>enter page</a>"); }
else { print(
"$HTTP_REFERER. <br><br>To access this script go to the <a href=week8enter.php>enter page</a>"); }

exit; }

?>

Welcome to my random url script. <br><a href="http://tts.lt/~sir/scripts/week8adv.php?page=rand" onMouseOver="window.status='What are you looking at? Just click. You really need it :)'; return true;"
onMouseOut="window.status='';"> Click here </a> for random url.

<title> Week 8 advanced to-do assignment </title>



also 1 question. why if i put <title> in the top of page it says:
Warning: Cannot add header information - headers already sent by (output started at /home/sir/www/scripts/week8adv.php:2) in /home/sir/www/scripts/week8adv.php on line 26
?

 

 (#366 2003-11-04 11:18:26) Post Reply

Dest
Need To Set


Enrolled: Oct 2003
Posts: 18
AP: 1

whoops i gave you enter page url :) here is script url:
http://tts.lt/~sir/scripts/week8adv.php


 

 (#635 2004-06-10 06:38:26) Post Reply

Ahkorahil
Need To Set


Enrolled: Oct 2003
Posts: 20
AP: 1


<?php
$domain = "http://class.scriptschool.com/forums/php101/view/15/";
if(eregi($domain, $HTTP_REFERER)) {
if ($to != "") {
if ($to = "lam") {
$url = array("http://www.zone.ee",
"http://www.jippii.ee",
"http://www.tdscripts.com",
"http://www.hot.ee");
mt_srand(time());
$answer = (mt_rand(1, (count($url)))-1);
$to = $url[$answer];
if(eregi("^http://(.+)\.(.+)", $to)) {
$ok = "ok"; } else {
print("Something is wrong.<br>");
}
}
header("Location: $to");
}
print("Click here<br>
<a href=\"http://members.lycos.co.uk/rain086/php/8.php?to=lam\"
onMouseOver=\"window.status='Click on this link'; return true;\"
onMouseOut=\"window.status='';\">Hello, click on ME plz</a>");
} else {
print("You have come from different site as required.");
}
?>


 

 (#786 2005-03-06 11:06:25) Post Reply

zman
Need To Set


Enrolled: Feb 2005
Posts: 15
AP: 1

My Advanced assignment #8:



<?php

/* ScriptSchool.com Assignment 8 (advanced)
// Description of Assignment: Write a script to randomly
// choose a URL and redirect the surfer when clicked. Make the
// URL a javascript mouseover so that it is a blind link so the
// person clicking will not see the result in the browser status
// window. Include security measures to ensure the script call is
// only coming from Adult Netsurprise or your server and make
// sure that the URL looks like a valid URL before redirecting
// the surfer if it does not look valid than redirect to a
// different URL.*/

$mydomain = "((^http://)(www\.)?(garagechoppers\.com/).+)";
$othervaliddomain = "((^http://)(www\.)?(adultnetsurprise\.com/).+)";

if(
eregi("$mydomain", $HTTP_REFERER) OR eregi("$othervaliddomain", $HTTP_REFERER))
{
// this visitor has come from a valid domain, so continue
if($in != "")
{
if (
$in == "rnd")
{
$urls = array("http://garagechoppers.com/learning_php/assignment7_advanced.php",
"http://garagechoppers.com/learning_php/assignment6_advanced.php",
"http://garagechoppers.com/learning_php/assignment5_advanced.php",
"http://garagechoppers.com/learning_php/assignment4_advanced.php",
"http://garagechoppers.cox/learning_php/assignment3_advanced.php");
srand(time());
$count = count($urls);
$result = rand(0,$count);
$in = $urls[$result];
}
$validdomain = "((^http://)(www\.)?(.+\.(com|net|org)/).+)";
if(
eregi("$validdomain", $in))
{
header("Location: $in");
}
else
{
header("Location: <A HREF="http://garagechoppers.com/learning_php/myassignments.html");" TARGET=_blank>http://garagechoppers.com/lear...nments.html");</A>
}
}
}
else
{
print(
"You did not come from a valid referring page.");
}

?>
<HTML>
<HEAD>
<TITLE>ScriptSchool.com Assignment 8 (advanced)</TITLE>
<HEAD>
<BODY bgcolor="666666">

<center><p><b>ScriptSchool.com Assignment 8 (advanced)</b><br />
Description of Assignment: Write a script to randomly choose <br />
a URL and redirect the surfer when clicked. Make the <br />
URL a javascript mouseover so that it is a blind link so the <br />
person clicking will not see the result in the browser status<br />
window. Include security measures to ensure the script call is <br />
only coming from Adult Netsurprise or your server and make <br />
sure that the URL looks like a valid URL before redirecting <br />
the surfer if it does not look valid than redirect to a <br />
different URL.</p></center>

<center><a href="http://garagechoppers.com/learning_php/assignment8_advanced.phtml?in=rnd"
onMouseOver="window.status='Yes, you really do need to click this'; return true;"
onMouseOut="window.status='';">You really need to click here</a></center>

</body>
</html>


 

 (#838 2005-06-16 04:41:13) Post Reply

vegyta2004
Need To Set


Enrolled: Apr 2005
Posts: 34
AP: 1

MY advanced assignment:


<? If($var!=""){
if ($var==rnd) {
$url=array("http://www.manga-anime.ro","http://www.programare-me.as.ro","http://www.vegyta.ropage.com","http://www.animes.3xforum.ro");
if(($HTTP_REFERER=="http://www.vegyta.3x.ro/week8_advanced.php")or($HTTP_REFERER=="http://www.adultnetsuprise.com"))
{
$counts = count($url);
mt_srand(time());
$result =mt_rand(0,$counts-1);
$ec=$url[$result];
if(ereg("http://www\..+\.(com|net|org|ro)",$ec))
{header("Location:$ec");}else{echo"<br>","your url is invalid";}
}
else { echo"You are not coming form my domain or from my class","<br>"; echo"referer:$HTTP_REFERER","<br>";}
}
}
?>
<HTML>
<BODY>

<a href="http://www.vegyta.3x.ro/week8_advanced.php?var=rnd"
onMouseOver="window.status='click me,please'; return true;"
onMouseOut="window.status='Come on,click the link';">link</a>
</BODY>
</HTML>

http://www.vegyta.3x.ro,click on "Program in test 3"

 

 (#839 2005-06-16 04:42:43) Post Reply

vegyta2004
Need To Set


Enrolled: Apr 2005
Posts: 34
AP: 1

Pardon
Working url: http://www.vegyta.3x.ro
click on "Program In test 3"

 

 (#975 2006-03-21 05:29:34) Post Reply

Russell
Need To Set


Enrolled: Mar 2006
Posts: 19
AP: 1

i had to look around and see some examples to get this one. then i played with it all day and finally wrote one myself (still with a bit of help from quicksaver). in my messings around i tried to pick the link from a mulit-dimensional array. ill post the code after this is someone wants to take a look and tell me why its not forwarding i would very much appreciate it.

anyways, heres my week 8 advanced assignment:



<?
$mydomain
="(.+)bigtitsfinder(.+)";
$otherdomain="(.+)scriptschool(.+)";
if(
eregi($mydomain,$HTTP_REFERER) OR eregi($otherdomain,$HTTP_REFERER)){
if(
$goto!=""){
$links=array(
'http://www.google.com',
'http://www.yahoo.com',
'http:/www.msn.com',
'http://www.tdscripts.com',
'http//www.tomsnewbiebooster.com',
'http://www.scriptschool.com');
mt_srand(time());
$test="bad";
while(
$test=="bad"){
$rand_seed=mt_rand(0,(count($links))-1);
$chosen_link=$links[$rand_seed];
if(
eregi("^http://(.+)\.(.+)",$chosen_link)){$test="good";}
}
header("Location: $chosen_link");
}
}else{print(
"Bad referring url, <a href=\"http://www.bigtitsfinder.com/testing/lesson8.php\">click here</a>"); exit;}
?>
<a href="http://www.bigtitsfinder.com/testing/lesson8.php?goto=blah" onMouseOver="window.status='http://www.freestuff.com'; return true;" onMouseOut="window.status='';">Free Stuff</a>


 

 (#976 2006-03-21 05:32:32) Post Reply

Russell
Need To Set


Enrolled: Mar 2006
Posts: 19
AP: 1

and heres the one i tried to do with a multi-dimensional array. i just cant figure out why it wont work. it doesnt give a php error it just loads an error page that says "this page cannot be displayed"?


<?
$mydomain
="(.+)bigtitsfinder(.+)";
$otherdomain="(.+)scriptschool(.+)";
if(
eregi($mydomain,$HTTP_REFERER) OR eregi($otherdomain,$HTTP_REFERER)){
if(
$goto == "ok"){
$cat1=array(
'http://www.cat1-a.com',
'http://www.cat1-b.com',
'http://www.cat1-c.com',
'http://www.cat1-d.com',
'http://www.cat1-e.com');
$cat2=array(
'http://www.cat2-a.com',
'http://www.cat2-b.com',
'http://www.cat2-c.com',
'http://www.cat2-d.com',
'http://www.cat2-e.com');
$cat3=array(
'http://www.cat3-a.com',
'http://www.cat3-b.com',
'http://www.cat3-c.com',
'http://www.cat3-d.com',
'http://www.cat3-e.com');
$multi=array(
$cat1,
$cat2,
$cat3);
$multi_num=count($multi)-1;
mt_srand(time());
$test="bad";
while(
$test=="bad"){
$pickcat=mt_rand(0,$multi_num);
$picknum=count($multi[$pickcat])-1;
$pickban=mt_rand(0,$picknum);
$showban=$multi[$pickcat][$pickban];
if(
eregi("^http://(.+)\.(.+)",$showban)){
$test="good";
}
}
header("Location: $showban");
}
}else{
print(
"Bad referring url, <a href=\"http://www.bigtitsfinder.com/testing/lesson8.php\">click here</a>");
exit;
}
?>
<a href="<? $PHP_SELF ?>?goto=ok" onMouseOver="window.status='http://www.freestuff.com'; return true;" onMouseOut="window.status='';">Free Stuff</a>



 

 

View Previous Thread
Print this page Print This Page

View Next Thread

School Map:  Home / Enroll $ Student Records; Class  
$ News @ LIVE Tech Radio * Support/FAQ | Store

Advertising | Link To Us | Privacy 
Copyright 2000-2002 Script School Productions / KMR Enterprises 
No part of this website may be reproduced, copied and/or distributed in any medium 
without express written permission