[PHP] PHP (Google Summer of Code 2009)

2009-03-21 Thread Slava Gerchicov
Are you looking for developers? What could I do for you? What do you think about a translation the last PHP's documentaion to Russian?

[PHP] Re: HTTP request parameters do not populate variables

2004-02-01 Thread Slava Zinkovski
OK! Thanks! Dvdmandt wrote: Yes, I know what you mean.. :) If you use windows (or some other msn client), feel free to add me on MSN and I'll be glad to help you out if you get problems.. :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: HTTP request parameters do not populate variables

2004-02-01 Thread Slava Zinkovski
I will follow, sure. The problem is that until last week i knew nothing about PHP (I used to practice java). And in a few weeks i have to be ready with a PHP application and possibly it should utilize fusebox framework. There are so many stuff to get to know in short time that sometimes it is e

[PHP] Re: HTTP request parameters do not populate variables

2004-02-01 Thread Slava Zinkovski
Many thanks, man. You are very helpful! I did try searching this news group. Nothing found. Will try to do my best next time to not upset you. Anyway, thanks for help. Dvdmandt wrote: And once again, someone didn't search the archives before posting like you are told to do on the mailing list page

[PHP] HTTP request parameters do not populate variables

2004-02-01 Thread Slava Zinkovski
Hi, everybody! I've just installed PHP on my workstation and it seems as I have some trouble. The simplest code does not work! Here it is: I run it with URL like this http://localhost/myApp/test.php?param=qqq: I expect it to print 'param=qqq' string, though it does not! :((( Here is the output:

[PHP] How can I get all vars

2003-07-01 Thread Slava
Hi, Can somebody say how can I get all vars and their values from a script. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Returning TWO variables from function

2003-06-24 Thread Slava
The function can return an array that include two or more variables. "Nadim Attari" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Can someone let me know how to return TWO variables from a function > Try http://www.php.net/manual/en/language.references.php > -- PHP General Ma

[PHP] Re: weird switch behaviour

2003-06-24 Thread Slava
Try it: switch($type) { case HIRE: statements; break; etc default: echo "In Default"; break; } "Cg" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I am testing a var in a switch statement,