(Maybe it's another foolish question, but I almost don't know anything about "l+a+m+p", please help me)
I am using linux+apache+mysql+php solution.
In the scripts, there are codes like this:
<?php
@$c = mysql_pconnect("localhost", "root", "password") ;
print "ok?" ;
?>
But I found the "ok?" cannot be displayed. It seems somethings like an exception occurs when mysql_pconnect() is called.
I am sure that root's password is "password" and mysql runs ok.
So what's the problem.
Thanks a million!