PHP
Pdo in command line php?
Submitted by softking on Sun, 01/11/2009 - 10:57Hi
I had the following problem when trying to connect to oracle database from PHP when running in command line
"DB Connection failed: could not find driver"
How to prevent navigation to a different page in PHP
Submitted by softologi on Sun, 06/15/2008 - 23:23In order to prevent navigation to a different page you have to do the following:
Call the header function with "HTTP/1.0 204 No Data" as the parameter. See example:
<?php
How to Increase maximum post size in PHP
Submitted by softologi on Tue, 06/10/2008 - 00:12In PHP the default POST maximum size is 2MB,
If you need to be able to upload larger files to the server you have to change the following configurations in your php.ini
How to create a cookie in PHP
Submitted by softologi on Sun, 06/08/2008 - 23:21How to create a cookie in PHP
setcookie("<cookie_name>", "<cookie_value>",<time is will expire>);
setcookie("username", "$username", time()+36000000);