[PHP] Big File Upload how to catch stream

2013-02-24 Thread Wim
tation and it seems that this is where the memory goes really up. Is there a way we could change this ? Kind Regards Wim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] [php] passing variables doesn't work

2006-10-25 Thread WILLEMS Wim \(BMB\)
";/* this is printed to the screen */ echo "$wim"; /* this is NOT printed to the screen */ echo "$host"; /* only the is printed */ echo "$database"; /* only the is printed */ echo "query: $query"; /* o

[PHP] PHP manual - multiple HTML pages

2003-10-20 Thread wim
Does anyone still have the tarfile for the manual. On the website they announce that these manuals will be redeployed shortly but this message is already three weeks there and I need this (as always ) urgently. Thanx in advance for sending it . Wim -- PHP General Mailing List (http

RE: [PHP] php editor?

2003-06-18 Thread Wim Paulussen
Well said ! More in general , I would like to take the opportunity to thank you and the Zend team for your contribution with regards to the complete PHP project. Wim -Oorspronkelijk bericht- Van: Zeev Suraski [mailto:[EMAIL PROTECTED] Verzonden: Wednesday, June 18, 2003 9:50 AM Aan: Ryan

[PHP] odbc_connect

2003-06-18 Thread Wim Paulussen
nyone any ideas ? Thx, Wim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] MSSQL connection

2003-06-17 Thread Wim Paulussen
At least : step 1. Does anyone know what is meant by the 'interfaces' file ? The servername argument has to be a valid servername that is defined in the 'interfaces' file. -Oorspronkelijk bericht- Van: Wim Paulussen [mailto:[EMAIL PROTECTED] Verzonden: Tuesday, J

RE: [PHP] MSSQL connection

2003-06-17 Thread Wim Paulussen
That's it . Thank you very much ! -Oorspronkelijk bericht- Van: Adam Voigt [mailto:[EMAIL PROTECTED] Verzonden: Tuesday, June 17, 2003 5:10 PM Aan: Wim Paulussen CC: [EMAIL PROTECTED] Onderwerp: Re: [PHP] MSSQL connection You need to turn on the MSSQL extension in your php.ini,

[PHP] MSSQL connection

2003-06-17 Thread Wim Paulussen
ith the manual . I was wondering whether this is related to the definition in the 'interfaces' file (whatever that may be). All help highly appreciated. Wim

RE: [PHP] Good PHP Books (topic wandering)

2003-06-17 Thread Wim Paulussen
I stick with the Wrox publications : for me 'Professional PHP' and 'Beginning PHP Databases' (with very good section about the DB class in PEAR) serve me in almost all my needs. The online manual though serves about 95 % of my queries. -Oorspronkelijk bericht- Van: Joel Rees [mailto:[EMAI

RE: [PHP] php editor?

2003-06-16 Thread Wim Paulussen
My two cents : jEdit main reasons why : - syntax highlighting - works on Linux and Windows (java-based) - full folding capabilities Wim -Oorspronkelijk bericht- Van: M-Ali Mahmoodi [mailto:[EMAIL PROTECTED] Verzonden: Monday, June 16, 2003 7:35 AM Aan: [EMAIL PROTECTED] Onderwerp: Re

RE: [PHP] regarding tags

2003-06-13 Thread Wim Paulussen
extract from php.ini file << ; Allow the tags are recognized. ; NOTE: Using short tags should be avoided when developing applications or ; libraries that are meant for redistribution, or deployment on PHP ; servers which are not under your control, because short tags may not ; be supported on the

RE: [PHP] Sessions and login

2003-06-11 Thread Wim Paulussen
page 1 : login.php input user name -> Post veriable input password-> post variable page 2 : verify.php session_start() // supposing name is entered if (!$_POST['password'] == "") { // verification against database if (successfully authenticated) { $_SESSIO

[PHP] pattern matching for the dot-sign

2003-06-05 Thread Wim Paulussen
LS, I am looking for a way to replace "." (=dot) to "," in a string with either ereg_replace or preg_match . I read the manual in PHP on Pattern matching for preg_match but could not immediately trace it. All help appreciated. Wim -- PHP General Mailing List (htt

RE: [PHP] Re: OpenSource PHP Project

2003-06-04 Thread Wim Paulussen
Check this out , mate. Fatal error: Failed opening required 'PEAR.php' (include_path='') in /home/groups/p/pr/prattcms/htdocs/phplayersmenu-2.3.5/lib/layersmenu.inc.php on line 4 -Oorspronkelijk bericht- Van: Randum Ian [mailto:[EMAIL PROTECTED] Verzonden: Wednesday, June 04, 2003 11:33 A

RE: [PHP] Sessions can be dangerous

2003-05-31 Thread Wim Paulussen
logging in into the database secure ! Nobody forces you to use the session system and if you want to shy away from it , it is your choice, but I am a little bit afraid that your lenghty email about session insecurity will be meaningfull only for the core PHP developers/auditors. Wim

RE: [PHP] How to question.

2003-05-30 Thread Wim Paulussen
Dear Ryan, 2 possible scenarios I use : a. store the values in variables that you transfer back and forth using 'hidden' input b. store the values in variables that you register in the session you opened (fyi all my php files start with session_start regardless whether I use it or

RE: [PHP] Session Question

2003-05-29 Thread Wim Paulussen
You should be able to use $_SESSION with register_globals on. " If you want your script to work regardless of register_globals, you need to use the $_SESSION array. All $_SESSION entries are automatically registered. If your script uses session_register(), it will not work in environments where r

RE: [PHP] Resending POST Variables

2003-05-29 Thread Wim Paulussen
You can do this either by sending 'hidden' input and store the POST value in the 'hidden' input or by storing the variables in a session. At least , that is what I do and it works for me. -Oorspronkelijk bericht- Van: Shaun [mailto:[EMAIL PROTECTED] Verzonden: Wednesday, May 28, 2003 6:23

RE: [PHP] Installation help

2003-05-27 Thread Wim Paulussen
Did you already look up executables in the mysql/bin folder and ran them . Try launching winmysqladmin. -Oorspronkelijk bericht- Van: Brian Dunning [mailto:[EMAIL PROTECTED] Verzonden: Tuesday, May 27, 2003 6:07 PM Aan: [EMAIL PROTECTED] Onderwerp: [PHP] Installation help Hi, I am a lam

Re: [PHP] Re: Permission denied, although permissions are right

2001-12-13 Thread Wim Godden
t; your file that you need to access also needs to be owned by nobody. > > Fred > > Wim Godden <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Hi, > > > > I'm trying to open a file (using fopen) in the /

[PHP] Permission denied, although permissions are right

2001-12-12 Thread Wim Godden
as root (which I don't like at all !) ? Greetings, Wim Godden -- 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] session variables in functions....

2001-11-20 Thread wim van houts
Somebody knows why I cannot reach the $HTTP_SESSION_VARS in a function For example, why does this not output the "en-US" string three times: -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

[PHP] Calculate # of minutes during working hours between two dates

2001-06-20 Thread Wim Koorenneef
etter, more efficient algorithm? Tia. -- Greetinx, Wim Koorenneef <[EMAIL PROTECTED]> Boxtel, the Netherlands -- 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 administrat