PHQ-4 – Anxiety and Depression Screen

PHQ-4 – Anxiety and Depression Screen

[php]
if ($_POST) {
$a = $_POST[‘1’];
$b = $_POST[‘2’];
$c = $_POST[‘3’];
$d = $_POST[‘4’];
$var1 = ($a + $b);
$var2 = ($c + $d);

if ($var1 > “2”) {
$var1 = “Further evaluation by GAD-7 or a mental health referral should be made.”;
}
else
{
$var1 = “No anxiety issues identified.”;
}
if ($var2 > “2”) {
$var2 = “Further evaluation by PHQ-9 or a mental health referral should be made.”;
}
else
{
$var2 = “No depression issues identified.”;
}
$result1 = $var1;
$result2 = $var2;

echo $result1;
echo ” “;
echo $result2;
echo “*”;
}
[/php]

Over the last two weeks, how often have you been bothered by the following problems?

Feeling nervous, anxious or on edge :
Not being able to stop or control worrying :
Little interest or pleasure in doing things :
Feeling down, depressed or hopeless :

[pullquote]The PHQ-4 is a validated tool to assess for anxiety and depression.[/pullquote]

Formula :

Points are given for each variable.

Explanation of Result :

Anxiety Section :
1. Feeling nervous, anxious or on edge:
2. Not being able to stop worrying:

Score of 3 or more is positive and should be further evaluated by GAD-7 or a mental health referral should be made.

Depression Section :
1. Little interest or pleasure in doing things:
2. Feeling down, depressed or hopeless:

Score of 3 or more is positive and should be further evaluated by PHQ-9 or a mental health referral should be made.

* Please verify all calculations prior to clinical use.