PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
[i]Why?.... read on[/i]
<?php
function cwinsfunc($arg) {
//This is where there is some code
$x = 1;
return <<<EOF
This is a load of HTML<br>
PHP will only replace variables, nothing else<br>
echo ("hi") will return echo ("hi")<br>
$x will return 1<br>
<b>Bold Text</b><br>
<br>
So obviously i cant put a do in here
EOF;
}