You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$query = mysqli_query($conn, " SELECT ID, group_concat(meta_key), group_concat(meta_value SEPARATOR ' ') AS fullname FROM wp_posts LEFT JOIN wp_postmeta ON ID = post_id WHERE post_type = 'nf_sub' AND ( meta_key = '_field_15' OR meta_key = '_field_16' ) AND ID IN ( SELECT post_id AS ID FROM wp_postmeta WHERE meta_key = '_field_17' AND meta_value='$emailcheck' ) GROUP BY ID ") ;
$row = mysqli_fetch_array($query) ;
if(count($row) < 1) { echo "Δεν βρέθηκε το email, παρακαλώ επικοινωνήστε με τον διαχειριστή"; exit() ; }