Quote:
Today at 04:17 PM Xenon said this in Post #26
PHP Code:
$testing =
($i = 0; $i < 3) {
echo "TESTING 123"
}
this code has more than one error in just 4 lines, so don't tell me that would work somewhere else.
to write valid php it should look somehow like that:
PHP Code:
for ($i = 0; $i < 3; $i++) {
echo "TESTING 123";
}
|
I wasn't actually referring to that block of code in my last post but nonetheless, it still doesn't work in phpinclude. How do you get that to work correctly in phpinclude so I can use it in formbit templates?