Well, this really should be in the coding forum, not the code critique. Now, the best implementation of this would be to create a function. So instead of telling it goto line whatever, you just tell it to execute the function.
function doThis() {
echo "Blah";
}
if($whatever) {
doThis();
}