Re: [PHP] any change to see php source?

2003-02-02 Thread Edwin Boersma
See www.php.net. Qt wrote: Thank you chris, Help full Do you have any link for installation manual "Chris Hayes" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... At 21:36 1-2-2003, you wrote: I am studying on php. And the book say, when the server see ph

[PHP] Re: help needed building query string based on which form fieldsthat are filled.

2003-02-02 Thread Edwin Boersma
odify the submitted values. Edwin Anders Thoresson wrote: Hi, I've got a html form where not all fields need to be filled by the users. How can I build a MySQL query based on which fields the user have filled? My guess is that I can do something like this: if(!empty($f_na

[PHP] Re: save to file

2003-03-09 Thread Edwin Boersma
Enough answers, I think? If you want EACH value of $_POST on a new line, then why not implode with \n instead of \t? Now you get only one big line, because you only WRITE one \n. Edwin Ryan Holowaychuk wrote: I am trying to save to a text file. And I have managed to do that part now, but what

Re: [PHP] variable string names

2003-03-09 Thread Edwin Boersma
John's solution is the better one. But if you really wish to stick to your own, try and use eval() to complile $where$i. Edwin John W. Holmes wrote: I have: if ($where1 != '') { $whereArray = array_push($whereArray, $where1); } and I want to repeat for $where1 up

[PHP] Sending output to audio device from PHP

2003-06-09 Thread Edwin Boersma
if you want me to send the sources. Any input would be appreciated. Cheers, Edwin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Select box won't display in Netscape 4.xx

2001-12-31 Thread Edwin Boersma
efore? Regards, Edwin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Re: Need some Linux/Apache help

2001-12-31 Thread Edwin Boersma
Hi Todd, Has Apache been restarted ton use the new libphp4.so? And if so, does it use the correct one (you might have another one on your system)? If Apache starts without probs, check the httpd.conf for php mime types. What does Apache respond if you load your test script? Regards, Edwin Todd

Re: [PHP] hiding passwd in cmdlines that appear in the process list

2006-11-30 Thread Edwin Barrios
Hi !. I don't know if my solution is better or not. but in one of my programs i had to make a backup online then my solution was to use shell vars to put important information like db_password . When we use putenv function those var only exists on the current shell and on its subshells. In your c

Re: [PHP] hiding passwd in cmdlines that appear in the process list

2006-11-30 Thread Edwin Barrios
On 11/30/06, Richard Lynch <[EMAIL PROTECTED]> wrote: On Thu, November 30, 2006 9:59 am, Edwin Barrios wrote: > I don't know if my solution is better or not. but in one of my > programs i > had to make a backup online then my solution was to use shell vars to > put >

Re: [PHP] hiding passwd in cmdlines that appear in the process list

2006-11-30 Thread Edwin Barrios
Hi .! First of all . Pardon if my last mail was not undestable !! Then Richrad said that, the following is a cons of my solution : " A simple debug statement to dump out all of ENV / $_GLOBALS will expose the password. So you have to ask yourself if you and all your employees and all the sc

Re: [PHP] Multi-threaded port listener

2006-04-28 Thread Edwin Barrios
Hi. If you want a separate script execution, you can use inetd o xinetd to listen for you that port. When inetd got a connection execute your php script, one execution by connection. I think that it is more usefull to create your own responser server with php using forks !. But using inetd has

[PHP] Performace and segfault errors with Php5 + Apache 1.3.x + linux-2.6.x

2005-07-31 Thread Edwin Barrios
verify memorie lacks without results. Someone can help me, with this problem ! On this moment i'm using SIfEngine, to implement my proyects only on kernel 2.4.x ! Thanks ! Atte: Edwin Hernan Barrios Nuñez iBand Networks Ltda. www.iband.net -- PHP General Mailing List (http://www.php.ne

Re: [PHP] returning info. from a form selection

2005-08-01 Thread Edwin Barrios
Hi . ! what you want it's recive values from a "select". !!! First a select input send ( when the form is submitted ), the value of the selected item, then the php script that it's the form action recive, a on post or get a variable with the name of the select input with this value.

[PHP] Performace and segfault errors with Php5 + Apache 1.3.x + linux-2.6.x

2005-08-01 Thread Edwin Barrios
verify memorie lacks without results. Someone can help me, with this problem ! On this moment i'm using SIfEngine, to implement my proyects only on kernel 2.4.x ! Thanks ! Atte: Edwin Hernan Barrios Nuñez iBand Networks Ltda. www.iband.net -- PHP General Mailing List (http://www.php.ne

Re: [PHP] Performace and segfault errors with Php5 + Apache 1.3.x + linux-2.6.x

2005-08-01 Thread Edwin Barrios
ysvmsg' '--enable-sysvsem' '--enable-sysvshm' '--enable-shmop' '--with-xsl' '--enable-maintainer-zts' '--with-tsrm-pthreads' Then, i don't know what it's happing. On 8/1/05, Greg Donald <[EMAIL PROTECTED]> wrote:

Re: [PHP] Re: Performace and segfault errors with Php5 + Apache 1.3.x + linux-2.6.x

2005-08-08 Thread Edwin Barrios
ut i don't undestand, why only changing the kernel from 2.6.x => 2.4.x all my problems were solved magically ? On 8/4/05, Matthew Weier O'Phinney <[EMAIL PROTECTED]> wrote: > * Edwin Barrios <[EMAIL PROTECTED]>: > > i'am developing a web framework SifEngine (

Re: [PHP] Inherit Methods

2005-08-08 Thread Edwin Barrios
Hi ! you have to defined protected $var. This is a example where php5 OO model has a little ambiguities. Thing a few in your problem !, on de child class scope $var it's private then when yo execute printVar(), you aren't executed on parent scope you are calling a copie on child scope, then yo

[PHP] Where can i find docs to create a php5 extensions with OOP as SimpleXML?

2005-11-26 Thread Edwin Barrios
Hi, I'm a PHP web programing, but i wanna learn how to develop php5 extensions. I found php5 a good language to apply Objects programing, and it has very usefull examples of OO extensions as SimpleXML, DOM, Sqlite; for this reason i wanna develope my extension following those styles of API's . I'

Re: [PHP] Where can i find docs to create a php5 extensions with OOP as SimpleXML?

2005-11-27 Thread Edwin Barrios
Hi, David I suggest you take a lookn at > > http://www.zend.com/php5/articles/php5-xmlphp.php > > david > > Thanks for your suggestion, but i wanna info about programming extension in C/C++.

[PHP] how to create a php5 extensions on C/C++, reflecting php Class Api's ?

2005-12-27 Thread Edwin Barrios
Hi,I'm a PHP web programing, but i wanna learn how to develop php5 extensions on C/C++. I found php5 a good language to apply Objects programing, and it has very usefull examples of OO extensions as SimpleXML, DOM, Sqlite; for this reason i wanna develope my extension following those styles of API'

Re: [PHP] how to create a php5 extensions on C/C++, reflecting php Class Api's ?

2005-12-30 Thread Edwin Barrios
the C extentions. Do you know how to do that ? On 12/27/05, Gustavo Narea <[EMAIL PROTECTED]> wrote: > > Hello, Edwin. > > > > I think that in chapter #15 of "PHP 5 Power Programming" you're going to > find what you are looking for. > > Saludos!

Re: [PHP] Using GPG in Safe Mode

2006-01-17 Thread Edwin Barrios
Hi emil ! If you are using gnupg comand line, there is not way on PHP-safe mode. The only way that i know to wrap around this problem it's install pecl extension package calls gnupg (http://pecl.php.net/package/gnupg). This extension use libgpgme that bind all gnupg comand line options, then it d

Re: [PHP] Re: Using GPG in Safe Mode

2006-01-19 Thread Edwin Barrios
k that the solutions that "comex" comments it's a good one, it'sn't my prefered solution by security issues. P.S.D i never have proved if setting PHP_INI_SYSTEM vars it's posible on a .htacces file. On 1/18/06, M <[EMAIL PROTECTED]> wrote: > > [EMAIL PRO

Re: [PHP] GetImageSize() problem...

2001-05-15 Thread Edwin van Elk
is image is just a normal JPG (1536x1024) taken directly from my camera. GetImageSize however, thinks it's dimensions are: 51088x38655 ??? This also happens when I access the file from a local drive. Anyone got a clue ? Edwin. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] POST arrays?

2006-04-20 Thread Ing. Edwin Cruz
I'd try this: "; } ?> And when submit do this: Regards! Edwin. -Mensaje original- De: tedd [mailto:[EMAIL PROTECTED] Enviado el: Jueves, 20 de Abril de 2006 08:28 a.m. Para: William Stokes; php-general@lists.php.net Asunto: Re: [PHP] POST arrays? At 3:55 PM

RE: [PHP] session

2006-04-20 Thread Ing. Edwin Cruz
You should set a name to your session: Index.php: LogOff.php ++ | ISC Edwin Cruz <[EMAIL PROTECTED]>| ++ | IT Manager, MySQL GUI Doc Team | || | Transportes Medel Rogero SA de CV | || | Desk: +52 (449) 910 30 90

RE: [PHP] PHP error log

2006-04-20 Thread Ing. Edwin Cruz
Are you using the constants predefined? __FILE__ __LINE__ Or also try using backtrace, http://mx.php.net/debug_backtrace Regards! Edwin. -Mensaje original- De: Weber Sites LTD [mailto:[EMAIL PROTECTED] Enviado el: Jueves, 20 de Abril de 2006 07:43 a.m. Para: php-general

RE: [PHP] need help to put input text value into url

2006-04-25 Thread Ing. Edwin Cruz
Only chage method="post" for method="get" Regards! -Mensaje original- De: Patrick Aljord [mailto:[EMAIL PROTECTED] Enviado el: Martes, 25 de Abril de 2006 06:19 p.m. Para: php-general@lists.php.net Asunto: [PHP] need help to put input text value into url I have a form like this:

RE: [PHP] Re: Php function to Set focus On A form Field

2006-04-26 Thread Ing. Edwin Cruz
Or if you have header.inc.php and the body tag is global then in your form.inc.php(for example) or in your template, you can do this: Window.onLoad=function(){ document.nameform.inputField.focus(); } Regards! -Mensaje original- De: Philipp Kopf [mailto:[EMAIL PROTECTED] En

RE: [PHP] PHP 5 + Apache 2 on Windows: ms sql extension problem

2006-04-26 Thread Ing. Edwin Cruz
Try changing your direcive extension_dir: extension_dir="C:/PHP/ext" instead of extension_dir="C:\PHP\ext" -Mensaje original- De: Laszlo Nagy [mailto:[EMAIL PROTECTED] Enviado el: Miércoles, 26 de Abril de 2006 04:01 a.m. Para: php-general@lists.php.net Asunto: [PHP] PHP 5 + Apache 2

Re: [PHP] User-friendly URI's

2002-01-03 Thread Jonathan David Edwin Wright
It's actually alot easier that you think! for the news file, just create a file called 'news' (minus ' of course! ;) in your http root, then create (or append) a .htaccess with the following lines: ForceType application/x-httpd-php That tells Apache to parse news via PHP. As what you'v

Re: [PHP] convert yyyy/mm/dd to mm/dd/yyyy, how?

2002-01-13 Thread Jonathan David Edwin Wright
Hiya, Personally, I use the following bit of code. All it does is take a 14 digit timestamp and convert it into a unix timestamp: function date($date) { //Extract the parts from the date $year = substr($date, 0, 4); $month = substr($date, 4, 2); $day = substr($date, 6, 2);

Re: [PHP] User-friendly URI's

2002-01-17 Thread Jonathan David Edwin Wright
d. > >Any thoughts? > >At 09:06 AM 1/4/2002, Jonathan David Edwin Wright wrote: >>It's actually alot easier that you think! >> >>for the news file, just create a file called 'news' (minus ' of course! >>;) in your http root, then create

<    1   2   3   4   5   6