[PHP-DB] dl () problem

2010-01-26 Thread Murat Beyhan
Dear All, I have updated apache2 and php5 then I have faced the following message. I have set on Enable dl in php.ini file but still could not solve problem. Could you help me about this problem, please. Fatal error: Call to undefined function dl() in /usr/local/httpd/htdocs/zone/zone30.php on

Re: [PHP-DB] dl () problem

2010-01-26 Thread Christoph Rosse
stupid question ... but did you restart apache after editing php.ini ? Sent from my iPhone On 26.01.2010, at 16:02, Murat Beyhan bey...@deprem.gov.tr wrote: Dear All, I have updated apache2 and php5 then I have faced the following message. I have set on Enable dl in php.ini file but still

[PHP-DB] PHP and MYSQL Update problem

2010-01-26 Thread Simone Fornara
Hello, I have a little problem with a sql command string $q = UPDATE episodes SET episode_title = '$_POST[episode_title]' , episode_scheduleddate = .strtotime($_POST['episode_scheduleddate']). , episode_description = '$_POST[episode_description]' WHERE episode_id = $_POST[episode_id]; I keep

Re: [PHP-DB] PHP and MYSQL Update problem

2010-01-26 Thread Manu Gupta
try .. $q = addslashes(UPDATE episodes SET episode_title = '$_POST[episode_title]' , episode_scheduleddate = .strtotime($_POST['episode_scheduleddate']). , episode_description = '$_POST[episode_description]' WHERE episode_id = $_POST[episode_id]); or try $q = UPDATE episodes SET episode_title =

Re: [PHP-DB] dl () problem

2010-01-26 Thread Christopher Jones
Check the notes: http://www.php.net/manual/en/function.dl.php#function.dl.notes Christoph Rosse wrote: stupid question ... but did you restart apache after editing php.ini ? Sent from my iPhone On 26.01.2010, at 16:02, Murat Beyhan bey...@deprem.gov.tr wrote: Dear All, I have updated

Re: [PHP-DB] dl () problem

2010-01-26 Thread Murat BEYHAN
yes many times I restart apache If I didn't try it, why I will sent such a stupid questions!!! But still I could not solved the problem. On Tue, 26 Jan 2010 16:58:06 +0100, Christoph Rosse wrote stupid question ... but did you restart apache after editing php.ini ? Sent from my iPhone On

Re: [PHP-DB] dl () problem

2010-01-26 Thread Bruno Fajardo
2010/1/26 Murat BEYHAN bey...@deprem.gov.tr: yes many times I restart apache If I didn't try it, why I will sent such a stupid questions!!! But still I could not solved the problem. Keep acting like that and you certainly won't get any help from the list... On Tue, 26 Jan 2010 16:58:06

Re: [PHP-DB] PHP and MYSQL Update problem

2010-01-26 Thread Chris
Manu Gupta wrote: try .. $q = addslashes(UPDATE episodes SET episode_title = '$_POST[episode_title]' , episode_scheduleddate = .strtotime($_POST['episode_scheduleddate']). , episode_description = '$_POST[episode_description]' WHERE episode_id = $_POST[episode_id]); or try $q = UPDATE episodes

Re: [PHP-DB] Automatic logoff

2010-01-26 Thread Chris
listread wrote: Bruno, Thanks for the heads up on the php configuration. I'll check that out. We also need to write some data to a database, things like logout time. That means running a script for some other php code. There are probably a number of situations where the onUnload thing

Re: [PHP-DB] Procedure Parameter OUT values

2010-01-26 Thread Chris
WebPat wrote: Chris wrote: WebPat wrote: I am surprised by the order of the data returned from my stored procedure, and that it appears associated with the incorrect variables. Apparently the data is returned entirely positionally, without consideration for the variable names. So, the names

Re: [PHP-DB] Role Based Access Control and Role Based Security

2010-01-26 Thread Mikay
I am doing same thing with you,And I found the following may help: Zend framework has a package supporting Role based access control,Zend_ACL http://framework.zend.com/manual/en/zend.acl.html Maybe this can help you. 2010/1/26 Abah Joseph joefa...@gmail.com Hi list, thank to the wonderful