Re: [PHP] How to Add a Module

2004-12-03 Thread Nick Peters
M. Sokolewicz wrote: > Nick Peters wrote: >> Richard Lynch wrote: >> >> >>>Nick Peters wrote: >>> >>>>i currently have a apache and php installed perfectly on my box >>>>(slackware 10). However, i have the need to use mcrypt. I h

Re: [PHP] How to Add a Module

2004-12-03 Thread Nick Peters
Richard Lynch wrote: > Nick Peters wrote: >> i currently have a apache and php installed perfectly on my box >> (slackware 10). However, i have the need to use mcrypt. I have mcrypt all >> compiled and >> installed, but how do i add the module to my php install? I have

[PHP] How to Add a Module

2004-12-02 Thread Nick Peters
ks in advance. -- -Nick Peters -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP arrays and javascript

2004-11-30 Thread Nick Peters
$jsArray .= $name.'['.valueToJsValue($key, > $encoding).'] = '.valueToJsValue($value, $encoding).';'.$nl; > break; > case 'double': > case 'integer': >

Re: [PHP] PHP arrays and javascript

2004-11-30 Thread Nick Peters
Hodicska Gergely wrote: > trigger_error('Hoppa, egy új típus a PHP-ben? > '.__CLASS__.'::'.__FUNCTION__.'()!', E_USER_WARNING); on that line, what is the error you are trying to catch? I can't read what ever language that is

Re: [PHP] PHP arrays and javascript

2004-11-29 Thread Nick Peters
Marek Kilimajer wrote: > Nick Peters wrote: >> Hey, >> >> i know this probally a simple question, but it has been stumping me for >> quite some time now. How do i pass a php array to a javascript? >> >> i tryed: >> >> var myarray = new Array

[PHP] PHP arrays and javascript

2004-11-26 Thread Nick Peters
Hey, i know this probally a simple question, but it has been stumping me for quite some time now. How do i pass a php array to a javascript? i tryed: var myarray = new Array(<?PHP echo $myarray; ?>); but it didn't work. Anybody got any ideas? thanks in advance. -- -Nick Pete