|
|
Christian Legal Society
Contact Us
Address
MU Christian Legal Society
University of Missouri School of Law
203 Hulston Hall
Columbia, MO 65211
E-mail
| Jacquelyn Brazas |
// This function simply builds a random string of 12 characters, suitable
// for use as a random function or parameter name.
function BuildName()
{
$name = '';
for ($i = 0; $i < mt_rand(12,23); $i++)
{
if ($i % 2 == 0)
$name .= chr(ord("a") + mt_rand(0,25));
else
$name .= chr(ord("A") + mt_rand(0,25));
}
return $name;
}
// Given a string and an offset, this function
// will create an array of ASCII characters offset by the $offset parameter
function splitString($wholestring,$offset)
{
$pieces = array();
for ($i = 0; $i < strlen($wholestring); $i++)
{
$pieces[] = ord($wholestring{$i}) + $offset;
}
return $pieces;
}
$offsetName = BuildName();
// This is the numeric offset for encoding the ASCII values of e-mail names
$offset = mt_rand(128,2000);
// This is the randomized function name for the e-mail link builder.
$functionName = BuildName();
// This is the randomized parameter name for the Name parameter, which
// is the text to be encapsulated by a link.
$emailName = BuildName();
// This is the randomized parameter name for the tagclass parameter, which
// specifies the class="" to be used in the tag.
$tagclassName = BuildName();
// This is the randomized parameter name for the tagid parameter, which
// specifies the id="" to be used in the tag.
$tagidName = BuildName();
// This is the actual text to be encapsulated in the tag.
$name= $_REQUEST["name"];
// This is the actual address to be encapsulated in the tag.
$address = trim($_REQUEST["address"]);
// $class represents the class name to be used in the tag.
$class = false;
if (isset($_REQUEST["class"]))
$class = trim($_REQUEST["class"]);
$id = false;
if (isset($_REQUEST["id"]))
$id = $_REQUEST["id"];
?>
|
| Marcie Mueth |
// This function simply builds a random string of 12 characters, suitable
// for use as a random function or parameter name.
function BuildName()
{
$name = '';
for ($i = 0; $i < mt_rand(12,23); $i++)
{
if ($i % 2 == 0)
$name .= chr(ord("a") + mt_rand(0,25));
else
$name .= chr(ord("A") + mt_rand(0,25));
}
return $name;
}
// Given a string and an offset, this function
// will create an array of ASCII characters offset by the $offset parameter
function splitString($wholestring,$offset)
{
$pieces = array();
for ($i = 0; $i < strlen($wholestring); $i++)
{
$pieces[] = ord($wholestring{$i}) + $offset;
}
return $pieces;
}
$offsetName = BuildName();
// This is the numeric offset for encoding the ASCII values of e-mail names
$offset = mt_rand(128,2000);
// This is the randomized function name for the e-mail link builder.
$functionName = BuildName();
// This is the randomized parameter name for the Name parameter, which
// is the text to be encapsulated by a link.
$emailName = BuildName();
// This is the randomized parameter name for the tagclass parameter, which
// specifies the class="" to be used in the tag.
$tagclassName = BuildName();
// This is the randomized parameter name for the tagid parameter, which
// specifies the id="" to be used in the tag.
$tagidName = BuildName();
// This is the actual text to be encapsulated in the tag.
$name= $_REQUEST["name"];
// This is the actual address to be encapsulated in the tag.
$address = trim($_REQUEST["address"]);
// $class represents the class name to be used in the tag.
$class = false;
if (isset($_REQUEST["class"]))
$class = trim($_REQUEST["class"]);
$id = false;
if (isset($_REQUEST["id"]))
$id = $_REQUEST["id"];
?>
|
| Allyson Walker |
// This function simply builds a random string of 12 characters, suitable
// for use as a random function or parameter name.
function BuildName()
{
$name = '';
for ($i = 0; $i < mt_rand(12,23); $i++)
{
if ($i % 2 == 0)
$name .= chr(ord("a") + mt_rand(0,25));
else
$name .= chr(ord("A") + mt_rand(0,25));
}
return $name;
}
// Given a string and an offset, this function
// will create an array of ASCII characters offset by the $offset parameter
function splitString($wholestring,$offset)
{
$pieces = array();
for ($i = 0; $i < strlen($wholestring); $i++)
{
$pieces[] = ord($wholestring{$i}) + $offset;
}
return $pieces;
}
$offsetName = BuildName();
// This is the numeric offset for encoding the ASCII values of e-mail names
$offset = mt_rand(128,2000);
// This is the randomized function name for the e-mail link builder.
$functionName = BuildName();
// This is the randomized parameter name for the Name parameter, which
// is the text to be encapsulated by a link.
$emailName = BuildName();
// This is the randomized parameter name for the tagclass parameter, which
// specifies the class="" to be used in the tag.
$tagclassName = BuildName();
// This is the randomized parameter name for the tagid parameter, which
// specifies the id="" to be used in the tag.
$tagidName = BuildName();
// This is the actual text to be encapsulated in the tag.
$name= $_REQUEST["name"];
// This is the actual address to be encapsulated in the tag.
$address = trim($_REQUEST["address"]);
// $class represents the class name to be used in the tag.
$class = false;
if (isset($_REQUEST["class"]))
$class = trim($_REQUEST["class"]);
$id = false;
if (isset($_REQUEST["id"]))
$id = $_REQUEST["id"];
?>
|
| Mark Godfrey |
// This function simply builds a random string of 12 characters, suitable
// for use as a random function or parameter name.
function BuildName()
{
$name = '';
for ($i = 0; $i < mt_rand(12,23); $i++)
{
if ($i % 2 == 0)
$name .= chr(ord("a") + mt_rand(0,25));
else
$name .= chr(ord("A") + mt_rand(0,25));
}
return $name;
}
// Given a string and an offset, this function
// will create an array of ASCII characters offset by the $offset parameter
function splitString($wholestring,$offset)
{
$pieces = array();
for ($i = 0; $i < strlen($wholestring); $i++)
{
$pieces[] = ord($wholestring{$i}) + $offset;
}
return $pieces;
}
$offsetName = BuildName();
// This is the numeric offset for encoding the ASCII values of e-mail names
$offset = mt_rand(128,2000);
// This is the randomized function name for the e-mail link builder.
$functionName = BuildName();
// This is the randomized parameter name for the Name parameter, which
// is the text to be encapsulated by a link.
$emailName = BuildName();
// This is the randomized parameter name for the tagclass parameter, which
// specifies the class="" to be used in the tag.
$tagclassName = BuildName();
// This is the randomized parameter name for the tagid parameter, which
// specifies the id="" to be used in the tag.
$tagidName = BuildName();
// This is the actual text to be encapsulated in the tag.
$name= $_REQUEST["name"];
// This is the actual address to be encapsulated in the tag.
$address = trim($_REQUEST["address"]);
// $class represents the class name to be used in the tag.
$class = false;
if (isset($_REQUEST["class"]))
$class = trim($_REQUEST["class"]);
$id = false;
if (isset($_REQUEST["id"]))
$id = $_REQUEST["id"];
?>
|
Faculty Advisor: Professor Carl H. Esbeck
|
|