Add div tag before if?

how can i add the div class or id b4 if for the whole thing?

Your question is not very explanitory. But, is this what your trying to do?


<?php

$class = "someClassName"
if(){
print "<div class='".$class."'>Some Div</div>";
}

?>

You will have to try and explain it a bit better than that!