PHP function not executing.
Posted: Mon Dec 08, 2008 6:15 pm
Hi. Another newbie question.
I have this following code in PHP:
A very simple code. I am using Visual Studio as my code-editor for this project and I put in a break point in the "function ThisIsATest()" line. When I run the code, the debugger skips over the "print" and "echo" functions I call inside my function.
What could be the problem?
Thanks in advance.
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.