Re: [PHP] problems with exec()

2006-11-30 Thread Juanjo Pascual
What is the safe_mode value in your php.ini? To run exec the value of your safe_mode has to be OFF. [EMAIL PROTECTED] escribió: Try exec('/path/to/copy', $return); print_r($return); read the manual : http://nl3.php.net/manual/en/function.exec.php Description string exec ( string command [,

[PHP] PROBLEM WITH MAIL FUNCTION

2006-07-06 Thread Juanjo Pascual
Hello, I have a problem with the mail function when I send a mail with acents or Ñ in the subject. When I receive the mail this caracters have been replaced by X. I'm using the mail function in this way: mail([EMAIL PROTECTED], 'Consulta Señalítica desde la página web', 'Hola, esto es una p

[PHP] READING LDIF FILES

2006-07-04 Thread Juanjo Pascual
Hey all, how can I read LDIF files using PHP?? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] STRING TO ASCII CHARACTERS

2006-06-23 Thread Juanjo Pascual
Ok. Thanks. You only have to change the function *length() *by the function *strlen()* cajbecu escribió: function stransform($string) { for ($i=0;$i Do you know any way to convert any string to ascii characters?? I mean: *"abcdefgh"* to *"abcdefgh"* Juanjo.

[PHP] STRING TO ASCII CHARACTERS

2006-06-23 Thread Juanjo Pascual
Do you know any way to convert any string to ascii characters?? I mean: *"abcdefgh"* to *"abcdefgh"* Juanjo.

[PHP] MYSQL_CONNECT vs MYSQL_PCONNECT

2006-06-20 Thread Juanjo Pascual
How can i know which of both is better to use each time? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Paging Help

2006-06-20 Thread Juanjo Pascual
Links for the pages --- First page: this_page.php?pag=1 Previous page: this_page?pag= Next page: this_page?pag= Last page: this_page?pag= Rodrigo de Oliveira Costa escribió: I have the following problem, I need to make a paging system to show results from search on a Mys