-2
I need my script every time I submit write a new line in my file. csv as is and does not replace the line that already exists, and also make a check if there is already a $email already registered and if there is to stop the execution and do not write anything. I’d be very grateful if you’d help me !!
$arquivo = fopen('duvidas.csv','w');
while(true) {
$linha = fgets($arquivo);
if ($linha==null) break;
}
$texto = "$nome,$email,$nasc";
fwrite ($arquivo, $texto);