http://www.php.net/manual/en/function.cubrid-connect-with-url.php
{code}
$conn_url = CUBRID:localhost:33000:demodb:public:123456;
{code}
The url format is incorrect. It is missing a : at the end.
{code}
$conn_url = CUBRID:localhost:33000:demodb:public:123456:;
{code}
gives the error that the password is incorrect or missing (which is expected since public has no password in my case).