Sence you seam to be the DA expert 😉
I have this other problem about writeing to line X in the text file,,
Simply i want to use the line below to able to wrtie to line X
Where X = $number, from a string fron another page (i have done all the other pages just not this write to like x"
$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);