OK I am trying to run a mathematical operation on a user inputed number. The source seems valid to me but I keep coming up with strange errors. Any help would be appreciated.
<? php
function BackdoorPW ( $key )
{
$x = (( $key * -1.2456 ) + 1) * 65533;
$x = ( $x / 2 + 7) * 3;
$x /= 2 ;
return ( $x * $x );
}
?>