CLIP Scoring System for HCC

CLIP Scoring System for HCC

[php]
if ($_POST) {
$a = $_POST[‘cp’];
$b = $_POST[‘tm’];
$c = $_POST[‘afp’];
$d = $_POST[‘pvt’];

$var1 = ($a + $b + $c + $d);

if ($var1 < "1") { $result = "Median Survival 42.5 months."; } if ($var1 > “0”) {
$result = “Median Survival 32 months.”;
}
if ($var1 > “1”) {
$result = “Median Survival 16.5 months.”;
}
if ($var1 > “2”) {
$result = “Median Survival 4.5 months.”;
}
if ($var1 > “3”) {
$result = “Median Survival 2.5 months.”;
}
if ($var1 > “4”) {
$result = “Median Survival 1 month.”;
}

echo $result;
echo “*”;
}
[/php]

Child-Pugh Stage :
Tumor Morphology :
AFP (ng/dL) :
Portal Vein Thrombosis :

[pullquote]The CLIP score for a patient with hepatocellular carcinoma is calculated by assigning a score.[/pullquote]

Formula :

Points are given for each variable.

Explanation of Result :

The CLIP score for a patient with hepatocellular carcinoma is calculated by assigning a score (0, 1 or 2) to each of four clinical factors: a) Child-Pugh stage; b) number of tumor nodules and whether the tumor extends through <=50% or >50% of the liver; c) AFP; and d) portal vein thrombosis.

Median Survival :
0 = 42.5 months
1 = 32.0 months
2 = 16.5 months
3 = 4.5 months
4 = 2.5 months
5-6 = 1 month

* Please verify all calculations prior to clinical use.