How can i Tell the $content
to write on to line X of a text file ? (where X is a Var passed on from another page)
(must work with php3)
$filename = $SCRIPT_PATH . "/businessdb.cfg";
$cypassword = base64_encode($newpass);
$fp = fopen ("$filename","w");
$content=$business."|".$cypassword."|".$phone."|".$address."|".$picture."|".$url."|".$email."|".$info;
fwrite ($fp, $content);
fclose ($fp);
Thanks,