How would I get:
print (!$getTemplate) ? "Cannot Find Template File!" : "Template OK!";
to be used as:
if (!$getTemplate)
{
echo "Cannot Find Template File!";
}
else
{
echo "Template OK!";
};
I have tried so many way of doing it but cant find it, im still quite new at PHP.
;at the end of theifstatement. I didn't remove it while editing assuming that you might have put it intentionally. It should be removed.