> +<![CDATA[ > +<?php > +echo decbin(12); > +echo decbin(26); > +?> > +]]>
> +<![CDATA[ > +1100 > +11010 > +]]> I'm the same newbie as you but I think that output should correspond to reality. echo decbin(12); echo decbin(26); outputs 110011010 so there should be probably some newlines in echo. For this short output will be also probably better simpler method than <screen> as RFC/coding_standards say: "For very short example printouts, use C++ style comment (//) on the line where the output occurs, or in the description above the line: echo $var; // 32 For longer example printouts, there are a couple methods which are acceptable." ... Jakub Vrana
