I have this following code in PHP:
Code: Select all
<?php
function ThisIsATest()
{
print "Test";
echo "Hello";
}
?>What could be the problem?
Thanks in advance.
Moderator: General Moderators
Code: Select all
<?php
function ThisIsATest()
{
print "Test";
echo "Hello";
}
?>