Slide 11
Slide 11 text
Reviewing Code [2]
function my_prefix_verify_answer() {
if ( strpos( $_POST['phrase'], "It's a brand new day" ) != false ) {
echo esc_html( 'Congratulations, you got it right!', 'domain' );
} else {
printf(
esc_html( 'Sorry, %s was the wrong answer', 'domain' ),
$_POST['phrase']
);
}
}