Generation

generate functionFri, 05 May 2023

I need a form that autofills if I have saved the email in my database.

function get_email($email){ $query = "Select * from emails where email = '$email'"; $results = mysqli_query($query); $row = mysqli_fetch_assoc($results); return $row; } get_email('robert@test.com');

Questions about programming?Chat with your personal AI assistant