<?php $BRANCHING_PROFILE = "09. Reading Comprehension - Post Test"; if (preg_match('/(Reading Comprehension)/', $BRANCHING_PROFILE ) === 1) { $code='AC2'; } else if (preg_match('/(Sentence Skills)/', $BRANCHING_PROFILE) === 1) { $code='AC1'; } else if (preg_match('/(Arithmetic)/', $BRANCHING_PROFILE) === 1) { $code='AC5'; } else if (preg_match('/(Elementary Algebra/', $BRANCHING_PROFILE) === 1) { $code='AC6'; } else if (preg_match('/College Level Math/i', $BRANCHING_PROFILE) === 1) { $code='AC7'; } else if (preg_match('(Reading Comprehension - Post Test)', $BRANCHING_PROFILE) === 1) { $code='PA2'; } else if (preg_match('/Sentence Skills - Post Test/i', $BRANCHING_PROFILE) === 1) { $code='PA1'; } else if (preg_match('/Arithmetic - Post Test/i', $BRANCHING_PROFILE) === 1) { $code='PA5'; } else if (preg_match('/Elementary Algebra - Post Test/i', $BRANCHING_PROFILE) === 1) { $code='PA6'; } else if (preg_match('/College Level Math - Post Test/i', $BRANCHING_PROFILE) === 1) { $code='PA7'; } var_dump(preg_match('(Reading Comprehension - Post Test)', $BRANCHING_PROFILE)); echo "Branching Profile: " . $BRANCHING_PROFILE . "\n\r"; echo "Code: " . $code;
You have javascript disabled. You will not be able to edit any code.