Well, if you just want completely replace the old value with 75, why do you need to read it in the first place? Just say:
if (! ($jp = fopen( ..., "w")))
die("oops, can't overwrite file");
else
{
fwrite( $jp, "75" );
fclose( $jp );
}