can't see errors
Posted: Mon Nov 20, 2006 1:38 am
Code: Select all
echo "this is a test<BR />";
fooor(i$=1; $i<4; $i++)
{
echo $i;
}any help
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
echo "this is a test<BR />";
fooor(i$=1; $i<4; $i++)
{
echo $i;
}Code: Select all
ini_set('error_reporting', E_ALL);
ini_set("display_errors", 1);Code: Select all
error_reporting(E_ALL);Code: Select all
<?php
print_r(ini_get_all());
?>itsmani1 wrote:echo "this is a test<BR />";
fooor(i$=1; $i<4; $i++)
{
echo $i;
}
I'm pretty sure he was trying to produce an error... ?volka wrote:Are you kidding?itsmani1 wrote:echo "this is a test<BR />";
fooor(i$=1; $i<4; $i++)
{
echo $i;
}
oops, sorry. Was full of prejudicesThe Ninja Space Goat wrote:I'm pretty sure he was trying to produce an error... ?volka wrote:Are you kidding?itsmani1 wrote:echo "this is a test<BR />";
fooor(i$=1; $i<4; $i++)
{
echo $i;
}