| 
 Posted by Jon Slaughter on 05/12/07 20:01 
BTW, essentially what I'm doing now is 
 
 
 //-------------------------- 
 // Decrypts data 
 function Decrypt($str) 
 { 
  if (gettype($str) == 'array') 
  { 
   foreach($str as $val) 
   { 
   $val = rtrim($val,'enc'); 
   } 
  } else 
  { 
   $str = rtrim($val,'enc'); 
  } 
 
  return $str; 
 } // 
 
the rtrims will in general be a function call and refer to the same exact  
function.
 
[Back to original message] 
 |