<?php
// Class to reload multiple selection fields
// Made By Sujith Nair [sujith_77@hotmail.com]
// On August 13, 2001
class multi {
function sel($name,$val)
{
// Check whether the field has the value
if(strstr($name,$val))
{
return "selected";
}
}
// End of class
}
?>
|