Re: [PHP] Parsing an XML return from a POST - resend with a little more information

2007-01-09 Thread Andrei
Hi, From all XML parsers I tried I loved the most: www.phpclasses.org/browse/package/1328.html The advantage is that you don't need any extra addons to php or anything else. It's pure php. Andrei Richard Luckhurst wrote: > Hi List > > I am sending this to th

Re: [PHP] Text Editor for Windows?

2007-02-08 Thread Andrei
Lots of ppl would tell u lots of different php editors. I personally use editplus2 bcuz it's very light and has syntax hightlighting on php code and html code in same time and other bla bla features. And I use it on linux too with wine. But anyway you will have to try them yourself to tell

Re: [PHP] Re: How to upload files up to 40MB with a html post form?

2007-02-14 Thread Andrei
upload it takes longer than 120 seconds. Andrei Robert Cummings wrote: > On Wed, 2007-02-14 at 14:22 +, Colin Guthrie wrote: > >> Robert Cummings wrote: >> >>> On Wed, 2007-02-14 at 14:05 +, Colin Guthrie wrote: >>> >>>> R

[PHP] Re: [?? Probable Spam] Re: [PHP] Re: How to upload files up to 40MB with a html post form?

2007-02-14 Thread Andrei
Presuming you got over 120 seconds time limitation and this still doesn't change a thing and you still cannot upload the file it might be because PHP script is not parsed BEFORE receiving the post data (the uploaded file) thus using the php.ini file values of upload_max_filesize, post_max_size an

Re: [PHP] PHP shell_exec

2007-02-27 Thread Andrei
Hi Ade, Sure you can. You must develop 2 scripts. One that will act as "server" and one as "client". So if you want to get details of server B from server A you should have the "server" into B and "client" into A. Be sure the communication between these 2 servers is securised (usi

Re: [PHP] Parse

2007-03-14 Thread Andrei
al phillips wrote: > I keep getting a parse error line x > when trying view php info() > Can you help please? > > > - > Be a PS3 game guru. > Get your game face on with the latest PS3 news and previews at Yahoo! Games. > . > > And the code you use would lo

[PHP] Re: [!! SPAM] [PHP] Parse

2007-03-14 Thread Andrei
al phillips wrote: > I keep getting a parse error line x > when trying view php info() > Can you help please? > > > - > Be a PS3 game guru. > Get your game face on with the latest PS3 news and previews at Yahoo! Games. > . > > Or maybe you should try with ph

Re: [PHP] 北京超品锐智技术有限责任公司招聘启 示 [AD]

2007-03-15 Thread Andrei
LOL... Why you even bother to read it? Tijnema ! wrote: > On 3/15/07, Faye Wang <[EMAIL PROTECTED]> wrote: >> 北京超品锐智技术有限责任公司招聘启示 >> >> 公司简介: >> >> 国内专业本地化公司 >> >> Transpac Technology Inc., which was established on 1996, specializes >> in Chinese software localization as well as Website and other >

Re: [PHP] Re: PHP->FLASH

2007-03-15 Thread Andrei
Mikey wrote: > To get values such as price=500 then you will need to encode that into > your URL. At the moment you are making thePrices=price500, so the > value you are seeing is correct. > > Tf you had price=500 then you would see a variable called price with a > value of 500. > > I suspect you

Re: [PHP] problem with string & floats in PHP

2007-05-15 Thread Andrei
If you need precision with floats or doubles you can use BCMath Arbitrary Precision Mathematics Functions. http://www.php.net/manual/en/ref.bc.php Andy Pablo Luque wrote: > Hello, Im designing a website in which I have to read some data > (numbers) from a txt file and then send this dat

Re: [PHP] PHP5 oop question...

2007-05-28 Thread Andrei
Stut wrote: > Andrei wrote: >> Hi list, >> >> I have a class which I use to parse simple bbcode inside some >> comments. >> I noticed on PHP5 that scope of preg_replace function is changed >> when function is called inside a class. To the

Re: [PHP] Re: Form Data Filtering

2007-06-15 Thread Andrei
Man you have some issues... :p Dave Goodchild wrote: > No, because extra processing is done on the other side - now > > fuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckfuckf

Re: [PHP] PHP P O K E R...... and JAVA (convert)

2007-06-27 Thread Andrei
So you expect PHP ppl to do your job and test a JAVA class to tell u if it's worth porting it to php? Nice thoughts... Andy Ryan A wrote: > Hey all! > > Was looking at trying some stuff with php and p oker (texas hold'em). > > After searching the net for some clues as to how i can do

Re: [PHP] simple OCR in php

2007-07-03 Thread Andrei
Richard Lynch wrote: > On Sat, June 30, 2007 12:12 pm, Jay Blanchard wrote: > >> [snip] >> >>> In short PHP cannot perform OCR functions. >>> >> Why? PHP provides all requisite functions/features so if someone was >> sadistic enough and talented enough there's nothing to stop them >>

Re: [PHP] how PHP is batter?

2007-07-03 Thread Andrei
Muhammad Hassan Samee wrote: > ASP.net VS PHP? > > how PHP is batter? > > . > In short words it's not Micro$oft and you don't need to buy stuff to develop in it. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Andrei
Jason Pruim wrote: > > On Jul 3, 2007, at 9:47 AM, Robert Cummings wrote: > >> On Tue, 2007-07-03 at 09:30 -0400, Jason Pruim wrote: >>> Hi Everyone! >>> >>> Here is some of the code: >>> >>> $result = mysql_query($sql); >>> echo ""; >>> echo ""; >>> echo " >>> ID # >>> Tickler Name >>> Tickler De

Re: Re: [PHP] how PHP is batter?

2007-07-03 Thread Andrei
Stut wrote: > Andrei wrote: >> Muhammad Hassan Samee wrote: >>> ASP.net VS PHP? >>> >>> how PHP is batter? >>> >>> . >>> >> In short words it's not Micro$oft and you don't need to buy stuff to >> develop in it.

Re: [PHP] how PHP is batter?

2007-07-03 Thread Andrei
Stut wrote: > Andrei wrote: >> I saw there is a free version of Studio, but I think it's for >> students... You cannot go build a corporate project with it I think... > > More FUD. Go read the licence before claiming to know what it says! > > -Stut > I said

Re: [PHP] duration of mp3 file

2007-07-11 Thread Andrei
Or you could use ffmpeg executable to get details about the media file. You will have to parse the response of the executable. The only thing is that you must have exec function or an execution function available and ffmpeg installed. This is for linux machines tho... Don't know if ffmpeg is avail

[PHP] Re: Encrypted Mail

2007-07-18 Thread andrei
Please read the attachment to get the message. Attachment: No Virus found Norman AntiVirus - www.norman.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] page redirecting

2006-06-28 Thread Andrei
Anyway if the content should be *secret* you should think about storing them on server-side. Andy Stut wrote: > kristianto adi widiatmoko wrote: >> HI folks, >> >> i need to redirecting page, it could be done by using header function >> like this >> >> header("Location : page2.ph

Re: [PHP] PAGE TURNED BECOME SOURCE CODE VIEW..

2006-07-14 Thread Andrei
I think you should make up your mind what u display to user... image or text... Andrei BBC wrote: > >> On 7/9/06, BBC <[EMAIL PROTECTED]> wrote: >>> I don't know why every time the script run the syntax which uses GD, the >>> page turned >>

Re: [PHP] convert byte to MB

2006-07-25 Thread Andrei
So what u'r trying to say is that we should use KiB and not KB for kilobytes? That's funny! Andrei Andrew Brampton wrote: > Divide by 1024 and you get KiB > Divide by 1000 and you get KB > > Read: http://physics.nist.gov/cuu/Units/binary.html > >

Re: [PHP] pop up "save dialog" box

2006-07-26 Thread Andrei
This is only an example and threat it as example. Take care about security too. So don't copy and paste :) You could do like this: weetat wrote: > Hi all, > > I have code below which save MYSQL to csv file. I am using ADODB > library to do this. > > The saving MYSQL to csv file is ok . > Ho

Re: [PHP] AES client side

2006-07-31 Thread Andrei
Encrypting/decriptying data at client side (in javascript or whatever script which sends the code to the client) is useless. It's like having the data "in clear" at client side. I use JavaScript only to make the interface "interactive". Andy Andrew Senyshyn wrote: > Hi all, > >

Re: [PHP] AES client side

2006-07-31 Thread Andrei
Then get a SSL certificate and let the browser do the job. If you do it with JavaScript or open-code language why shouldn't I just take your code and sniff the data you/the browser sends and decrypt it. Andy Andrew Senyshyn wrote: > Andrei wrote: >> Encrypti

Re: [PHP] saving and retrieving an array from a database

2006-08-07 Thread Andrei
Well it seems like u made a mess there with arrays... >From definition of first I understand it's an array of arrays with element on position 0 (ZERO) set to an array of apple, pear, banana elements. If u serialize it and unserialize it you will obtain same thing... so at the end of the script

Re: [PHP] Declaring variables from the url

2006-08-07 Thread Andrei
Also check in php.ini register_globals to be On if you want to have vars directly available in the script... Andy Jay Blanchard wrote: > [snip] > http://www.domain.com/index.php?var=1 > > And then, to use the variable, all I have to do is use it in the script, > > like so: > > echo "Th

Re: [PHP] returning to the same page after log in

2006-08-09 Thread Andrei
When u know the user is not logged in and you have to redirect him to login page, get all variables that are in $_GET and in $_POST (if u have data that u send in post also) and form a string with them as a return context string like: The code that you have to put in the page where you re

Re: [PHP] Espanol en esto lista

2006-08-16 Thread Andrei
Cool now we learn Spanish too. :) j/k Andy Dave Goodchild wrote: >> >> I don't speak enough Spanish to understand it all, but tratare according >> to altavista is "to treat" - not really sure I get it. >> >> Sorry, should be 'yo tratare', tratar also means to try - I will

Re: [PHP] Affiliate system

2006-09-13 Thread Andrei
I ran into same issue with a site... I solved this problem by saving information in 2 places (in cookies and in database). So when saving data once I saved in the cookie then into database. When I wanted to read the information I first check if cookie exist and if it doesn't I read from da

Re: [PHP] Class question

2006-09-15 Thread Andrei
Well in this example it will get to an infinite loop, but anyway like Thomas said you must check into extending classes. Andy Thomas Munz wrote: > Use 'extends' syntax for sub classes > > class A { > var $some_var; >var $class_B; > function A(){ >

Re: [PHP] php - mysql query issue

2006-09-15 Thread Andrei
Also you should check if dates.date is a DATE type, not DATETIME. Lost some time on that when I wanted to select enregs for a specific date, field was DATETIME and I was querying `date` = '2006-01-01'... :p Andy Dave Goodchild wrote: > On 15/09/06, Brad Bonkoski <[EMAIL PROTECTED]

Re: [PHP] preg_replace (again) [solved]

2006-09-20 Thread Andrei
Well you can use string strip_tags ( string str [, string allowable_tags] ) function Andy Peter Lauri wrote: > Hi, > > Thanks for you comment. I already changed to . > > About sanitation: Do you know any open source where it checks code if it is > acceptable or not? Or should I just create a li

Re: [PHP] Apply the hyper link ( javascript functon ) with php

2006-10-10 Thread Andrei
Make sure your $dir variable isn't containing the path to your file from your OS file system. This should be an apache (or whatever) path (an URL). Andy [EMAIL PROTECTED] wrote: > Richard Lynch wrote: > >> On Sun, October 8, 2006 6:53 pm, [EMAIL PROTECTED] wrote: >> >> >>> How to apply the f

Re: [PHP] I'm newbie in PHP

2006-10-24 Thread Andrei
If you don't have mysql support built in your PHP compilation, check your php.ini file (you see its location in phpinfo()), go to ;Windows Extensions part and check the line extension=php_crack.dll to be uncommented. Andy Hassan Arteaga Rodriguez wrote: > Hi all: > > Sorry if

Re: [PHP] I'm newbie in PHP

2006-10-24 Thread Andrei
UOTE] So he's on Window$ (not a real operating system indeed :p). Andy Paul Scott wrote: > On Tue, 2006-10-24 at 14:15 +0300, Andrei wrote: > >> extension=php_crack.dll >> >> to be uncommented. > > What does the CrackLib have to do with MySQL??? Surely you

Re: [PHP] Highjack?

2006-11-14 Thread Andrei
I usualy use an array with site configuration which I define at top included file so you cannot overwrite the configuration paths from outside the scripts. >From TFM: "If "URL fopen wrappers" are enabled in PHP (which they are in the default configuration), you can specify the file to be in

Re: [PHP] About date & time...

2006-02-28 Thread Andrei
I don't understand! Why don't u use date function and just format it as u want? Andy Gustav Wiberg wrote: Hi Thanx for your input about date & time... Here's some functions that worked for me after some searching... function currenttime() { $today = getdate(); $ithours = $today["hours"];

Re: [PHP] no newline after "?>" in the resulting HTML

2006-03-21 Thread Andrei
Really I think it would be loosing time documenting that you can put a new line after ?>! I mean it's obvious that what's outside php tags will be printed rite? Andy Rostislav Krasny wrote: On Mon, 20 Mar 2006 17:51:32 -0600 (CST) [EMAIL PROTECTED] ("Richard Lynch") wrote: On Sat, March 18,

Re: [PHP] redirect using php

2006-04-05 Thread Andrei
Or with javascript: PS: Sorry Mark... Andy Mark Kelly wrote: On Tuesday 04 April 2006 22:27, Brady Mitchell wrote:

Re: [PHP] redirect using php

2006-04-05 Thread Andrei
It works with document.location = '...'; too. I use only this method and it worked on all browsers... Andy Barry wrote: Andrei wrote: document.location = 'http://where.to.go.com/example.php?param1='; Wasn't it -> document.location.href ='www.ex

[Fwd: Re: [PHP] redirect using php]

2006-04-05 Thread Andrei
Andrei wrote: It works with document.location = '...'; too. I use only this method and it worked on all browsers... Assuming the end user has JS turned on. JS and Meta Refreshes are not acceptable when you need to be sure the redirect works. Depends on your user targe

Re: [PHP] SQL result

2006-04-18 Thread Andrei
I think you need mysql_fetch_assoc() or mysql_fetch_array(). You also can have a look into php's manual and simple find your functions... http://www.php.net/download-docs.php Andy Mohsen Pahlevanzadeh wrote: Dear all, I remember that i use a func that it return an array what it consist of re

Re: [PHP] Serialize

2006-05-24 Thread Andrei
It's not safe... if the array contains strings which contain ' or " might screw your query... it's safe to escape the string result from serialize... Andy [EMAIL PROTECTED] wrote: Hi, Is a serialized array a "safe" string to insert into a mysql text field? Or is a function such as

Re: [PHP] pop-up window in php???

2006-05-29 Thread Andrei
Not related to PHP, but u hava javascript confirm function or prompt (if you need input also). Andy [EMAIL PROTECTED] wrote: Hi all, Is there anyway to have a pop-up window to ask "are you sure? yes / no" in php? I know you can do it in Javascript, but I'm not sure what's the best

Re: [PHP] popup window from php page

2006-06-08 Thread Andrei
What PHP does is it outputs HTML code as result. Any other functionality regarding browser commands (such as opening popups) are done using javascript. Andy William Stokes wrote: Hello, How do I open a popup window from php code when a web page is loaded? Does it require javascri

Re: [PHP] Seeking recommendations for use of include()

2006-06-13 Thread Andrei
Anyway when you include files by script (not scpecifying the order in which u include them) check out class inheritage and class usage in files you include. Classes that are inherited must be included first. Andy At 7:22 PM +0900 6/13/06, Dave M G wrote: PHP List, Up until now, i

Re: [PHP] Paging Help

2006-06-20 Thread Andrei
Juanjo Pascual wrote: > // Num of records each time > $NUM_RECORDS = 10; > > if ($_GET["pag"] == "") { >$ini = 0; >$pag = 1; > } > else { >$ini = ($pag - 1) * $NUM_RECORDS; > } > > // Query to show > $query_rsData = "SELECT * FROM table LIMIT " . $ini . ", " . $NUM_RECORDS; > $rsData

[PHP] Re: [?? Probable Spam] [PHP] MYSQL_CONNECT vs MYSQL_PCONNECT

2006-06-20 Thread Andrei
As you didn't mentioned what you use your queries for, maybe read the manual? Andy Juanjo Pascual wrote: > 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] detect user click "stop" button in browser

2006-06-22 Thread Andrei
Check int connection_aborted ( ) in the PHP manual Andy weetat wrote: > Hi all, > > Can we detected if user have clicked the "X" button in browser or > close browser ? > I have tested in my php program ,when i click "X" in IE6 , the > execution did not stop , it still running

[PHP] Re: hello

2005-10-04 Thread andrei
Your document is attached. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Question about C++ like macros on PHP

2006-01-31 Thread Andrei
( "my_func(...)" ); which again will be a pain in the a... as this function is often called in every scripts... Any1 has any ideea about it? Thnx, Andrei -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Question about C++ like macros on PHP

2006-01-31 Thread Andrei
Well I know, I wanted to know if any1 did find a workaround... Barry wrote: Andrei wrote: Hi list, For debugging purposes I want to send to a function the line and file where it is called. The problem is that I want these parameters to be added to function as default parameters

Re: [PHP] Question about C++ like macros on PHP

2006-01-31 Thread Andrei
Thank you very much David Andrei David Grant wrote: Andrei, http://php.net/manual/en/function.debug-backtrace.php David Andrei wrote: Hi list, For debugging purposes I want to send to a function the line and file where it is called. The problem is that I want these parameters to be

Re: [PHP] Class constructor

2006-01-31 Thread Andrei
You could try with phpversion(). Georgi Ivanov wrote: Hi, I'm writing a simple class. In order to be compatible with php4 and php5 I've done this : class test{ function Test(){ //This will be called in PHP4 } function __construct(){ //Th

Re: [PHP] Re: Question about C++ like macros on PHP

2006-02-01 Thread Andrei
Thnx for the tip. I wanted debug features only for this function. So working with debug_backtrace() was what I needed. Thnx again, Andrei Richard Lynch wrote: On Tue, January 31, 2006 6:40 am, Andrei wrote: Well I know, I wanted to know if any1 did find a workaround... To be more clear

Re: [PHP] PHP 4.2.2 Float->Mysql addition problem

2006-02-03 Thread Andrei
When working with floats with php/mysql I had problems too... When summing amounts I had errors so my solution was using decimal (20, 10) type into mysql for storing amounts and when using sums in php I used bc functions. This way u get exact calculations (depending on bcscale() parameter.

Re: [PHP] PHP 4.2.2 Float->Mysql addition problem

2006-02-03 Thread Andrei
ot;0" ) is interpreted like a string that is not null and so condition is interpreted as true. Andy Barry wrote: Barry wrote: Andrei wrote: When working with floats with php/mysql I had problems too... When summing amounts I had errors so my solution was using decimal (20, 10)

Re: [PHP] PHP 4.2.2 Float->Mysql addition problem

2006-02-03 Thread Andrei
c = ".$c.""; } var_dump((bool) "0"); It's a common use to do if( $var ) and not if( (bool)$var )... Andy Ford, Mike wrote: On 03 February 2006 13:14, Andrei wrote: Welcome, Please note that using bc function variables will be of type string.

Re: [PHP] PHP 4.2.2 Float->Mysql addition problem

2006-02-03 Thread Andrei
$var ) { ... } when working with variables that are a result of bc functions. Andy Ford, Mike wrote: On 03 February 2006 13:14, Andrei wrote: Welcome, Please note that using bc function variables will be of type string. So a code working with numeric values like: $a = 1; i

Re: [PHP] LIMIT?

2006-02-06 Thread Andrei
You can use SELECT fields FROM table WHERE condition LIMIT 15, -1 and it will select all from 15... Andy William Stokes wrote: Hello I have a news page which is getting quite long now and I would like to split the news to two pages. Now I have one SQL query for all the rows and I t

Re: [PHP] Is my user system bad?

2006-02-09 Thread Andrei
Hi Peter, I use about same system, but instead putting ids of tables into session variable (which is easy to guess) I use a md5( uniqid( rand(), true ) ) string and I create an enreg into online tables (similar to your session table) with this string as primary key. I also add into se

Re: [PHP] Static and Global at the same time!

2006-02-10 Thread Andrei
What's the use of global static variables? Andy Miguel Guirao wrote: Hello list!! Can I have a variable that is static and global at the same time within a function? Let's say I have: $data = ""; function newdata() { static global $data; $data [$i] = $newdatatobestored_

Re: [PHP] Static and Global at the same time!

2006-02-10 Thread Andrei
A static defined variable used in a function will keep it's value each time the function is called, but this function is available only for function's scope. A global defined variable used in a function will keep it's values (as long as this value is not changed in "body" of the script or in

[PHP] PHP 4.3.0RC2 released

2002-11-27 Thread Andrei Zmievski
The second release candidate of the inimitably fabulous PHP version 4.3.0 is out. It can be downloaded from http://qa.php.net. Give it a good testing! -Andrei -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP 4.3.0RC3

2002-12-11 Thread Andrei Zmievski
PHP 4.3.0RC3 is out. Please download it from http://qa.php.net/ and test. This is the last release candidate before 4.3.0 final is unleashed. -Andrei http://www.gravitonic.com/ * The future is not what it used to be. * -- PHP General Mailing List (http

[PHP] PHP 4.3.0 released

2002-12-27 Thread Andrei Zmievski
o all who coded, tested, and documented this release! -Andrei http://www.gravitonic.com/ "It's an emergent property of connected human minds that they create things for one another's pleasure and to conquer their uneasy sense of being too al

Re: [PHP] need help with MySQL full text searching!!!!

2003-07-22 Thread Andrei BEJENARU
e a fulltext index on that column. If your query searches in more than one column, you have to add a multicolumn index on all those columns. And also, the string (word) you are matching must be over 4 characters (maybe not on MySQL 4.x, but surely on MySQL 3) Regards, -- Andrei BEJENARU - Developer

[PHP] Re: Password generator

2003-06-17 Thread Andrei BEJENARU
Here's a little function that could help you... It uses the ASCII table to generate the characters and it still needs to be customized for any length and to deny the use of the special characters... Don't forget to set the mt seed! function generatePassword() { $passwd = ""; while(strlen($passwd

[PHP] Re: GD library update

2003-06-19 Thread Andrei BEJENARU
u must download the big zip distribution, as it has all the needed libraries. Follow the instructions in the install readme file and you should have no problems. Andrei BEJENARU -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: template engine

2003-06-19 Thread Andrei BEJENARU
You must use $template = preg_replace("!{for loops=(.*)}(.*){/for}!U", code('\\1','\\2'), $template); since the references are of the form \\n Andrei BEJENARU "Niels Uhlendorf" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi,

[PHP] New PCRE features

2003-06-28 Thread Andrei Zmievski
continue, or interrupt the matching. I'm not sure how useful this would be for PHP users as the information provided is fairly low-level. See 'pcrecallout' PCRE man page for more info. If there are enough interested people, I will add support for it. That's about it for no

[PHP] AllTheWeb.com design contest

2002-08-16 Thread Andrei Zmievski
ld very much appreciate your support in getting the word out to the design community about the contest. If you have any technical questions, feel free to contact Frode Lundgren at [EMAIL PROTECTED] ------ -Andrei http:/

[PHP] PHP 4.3.0pre1

2002-10-10 Thread Andrei Zmievski
. Please join in and help us make this a high-quality release. You can use the build tracker at http://qa.php.net/buildtest-submit.php to report the results of your testing. Thank you, -Andrei http://www.gravitonic.com/ * Quantum Mechanics: The Dreams of Which

[PHP] PHP 4.3.0pre1 [updated]

2002-10-10 Thread Andrei Zmievski
Apologies, the correct URL to download PHP 4.3.0pre1 from is: http://www.php.net/~andrei/php-4.3.0pre1.tar.bz2 -Andrei http://www.gravitonic.com/ * 2 + 2 = 5 for extremely large values of 2. * -- PHP General Mailing List (http://www.php.net/) To

[PHP] PHP 4.3.0pre2

2002-10-27 Thread Andrei Zmievski
Hello, PHP 4.3.0pre2 is available for download from http://qa.php.net. This second pre-release incorporates a large number of bug fixes since the first one. Still, to help us catch as many bugs as possible, please download it and start testing. -Andrei http

[PHP] PHP-GTK 0.5.2 released

2002-10-31 Thread Andrei Zmievski
body good" 01-Nov-2002 ~ - simplified GdkPixbuf constructor parameters. (Andrei) - fixed setting of tile/stipple/clip_mask/bg_pixmap properties of GdkGC. (Andrei) - implemented GdkPixbuf::fill(). (Andrei) - changed failure t

[PHP] strange behaviour of unset()

2002-07-07 Thread Liviu Andrei
Hi everybody! I just switched from 4.0.6 to 4.2.1 (register_globals is ON) and I noticed that unset() is not working properly. Specifically, if I use "unset($a)" in a page, $a becomes not set in THAT page, but for the next pages (using sessions) $a gets back at its value. Here is the sample:

[PHP] FTP resumepos

2003-10-13 Thread Andrei Popovici
Can anyone help me understand how the parameter resumepos from ftp_get function can be used? Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] FTP resumepos

2003-10-14 Thread Andrei Popovici
So, resumepos is the number of bytes from wich the ftp_get will start reading the 'remote_file' and writing to the 'local-file'? Andrei. "Curt Zirzow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > * Thus wrote Andrei Popovici ([EMAIL PROTECT

[PHP] parsing ini files

2003-10-15 Thread Andrei Popovici
I have a script which reads his configuration from an ini file. For reading that file I use the parse_ini function. When the ini is written incorectly the php displays a message that he has encountered a parse error in that ini. How can I catch that error and display a message of my own? Andrei

Re: [PHP] whaw

2003-11-24 Thread Andrei Reinus
pete M wrote: Even the pros systems crash sometimes http://www.php.net/ Dr. Evil-Parse-Error strikes again! :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] whaw

2003-11-24 Thread Andrei Reinus
pete M wrote: Even the pros systems crash sometimes http://www.php.net/ // Highlight PHP code function highlight_php($code, $return = FALSE) { // Using OB, as highlight_string() only supports // returning the result from 4.2.0 ob_start(); highlight_string($code); $highlighted = ob_

Re: [PHP] Evaluating a page in a different order

2003-12-03 Thread Andrei Reinus
[EMAIL PROTECTED] wrote: Hey all, I have a php page class that i use as a template for my website. Every page in my website creates an instance of the class and passes values like title and meta tag keywords. The class includes the layout from different files e.g. title.lay contains the title and

Re: [PHP] What do you say to someone who says...

2003-12-05 Thread Andrei Reinus
http://www.zend.com/customers.php Do all these companies think that "PHP is just a kiddie language"? just my 0.02$ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-CVS] cvs: php4 /ext/vpopmail .cvsignore CREDITS Makefile.in config.m4 php_vpopmail.c php_vpopmail.h

2001-01-16 Thread Andrei Zmievski
LL) > PHP_FE(vpopmail_passwd, NULL) > PHP_FE(vpopmail_setuserquota, NULL) > {NULL, NULL, NULL} > }; Didn't we agree to put underscores between words in function names, i.e. vpopmail_del_user? -Andrei * Life may be expensive, but it includes an annual free

Re: [Fwd: [PHP] Perl regular expression bug]

2001-01-16 Thread Andrei Zmievski
; > I have to assume this is a bug, since this worked back in 4.0.2 which > I stopped using due to segfaults under certain circumstances. > > Ideas? It is indeed a bug - I fixed it in CVS version if you want to try that. -Andrei * A feature is a bug with seniority. * -- 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-CVS] cvs: php4 /ext/standard datetime.c

2001-01-17 Thread Andrei Zmievski
andrei Wed Jan 17 13:09:16 2001 EDT Modified files: /php4/ext/standard datetime.c Log: @- Changed 'Z' flag to date() to always return timezone offset with @ negative sign if it's west of UTC. (Andrei) Index: php4/ext/standard/datetime

[PHP-CVS] cvs: php4 /ext/standard datetime.c

2001-01-18 Thread Andrei Zmievski
andrei Thu Jan 18 06:36:43 2001 EDT Modified files: /php4/ext/standard datetime.c Log: @- Fixed 'O' and 'r' flags of date() to have correct sign for timezone @ offset. (Andrei) Index: php4/ext/standard/datetime.c diff -u php4/ext

[PHP-CVS] cvs: php4 /ext/standard array.c

2001-01-22 Thread Andrei Zmievski
andrei Mon Jan 22 09:27:03 2001 EDT Modified files: /php4/ext/standard array.c Log: @- Fixed extract() to properly prefix numeric keys when EXTR_PREFIX_ALL is @ used. (Andrei) @- Added EXTR_PREFIX_INVALID flag to extract() to automatically prefix

[PHP-CVS] cvs: php4 /ext/pcre php_pcre.c php_pcre.h

2001-01-22 Thread Andrei Zmievski
andrei Mon Jan 22 11:29:44 2001 EDT Modified files: /php4/ext/pcre php_pcre.c php_pcre.h Log: Z-ify the source. Index: php4/ext/pcre/php_pcre.c diff -u php4/ext/pcre/php_pcre.c:1.78 php4/ext/pcre/php_pcre.c:1.79 --- php4/ext/pcre/php_pcre.c:1.78

[PHP-CVS] cvs: php4 /ext/pcre php_pcre.c

2001-01-22 Thread Andrei Zmievski
andrei Mon Jan 22 11:42:29 2001 EDT Modified files: /php4/ext/pcre php_pcre.c Log: Don't need to check for out-of-memory condition. Index: php4/ext/pcre/php_pcre.c diff -u php4/ext/pcre/php_pcre.c:1.79 php4/ext/pcre/php_pcre.c:1.80 --- php4/ext

[PHP-CVS] cvs: php4 /ext/standard string.c

2001-01-22 Thread Andrei Zmievski
andrei Mon Jan 22 13:39:56 2001 EDT Modified files: /php4/ext/standard string.c Log: @- Improved str_replace() to accept an array for any parameter - similar @ to preg_replace(). (Andrei) Index: php4/ext/standard/string.c diff -u php4/ext/standard

[PHP-CVS] cvs: php4 /ext/pcre php_pcre.c

2001-01-22 Thread Andrei Zmievski
andrei Mon Jan 22 14:05:05 2001 EDT Modified files: /php4/ext/pcre php_pcre.c Log: If we can't call custom replacement function, don't change the subject string. Index: php4/ext/pcre/php_pcre.c diff -u php4/ext/pcre/php_pcre.c:1.80 php

[PHP-CVS] cvs: php4 / TODO

2001-01-24 Thread Andrei Zmievski
andrei Wed Jan 24 11:16:43 2001 EDT Modified files: /php4 TODO Log: Already done. Index: php4/TODO diff -u php4/TODO:1.108 php4/TODO:1.109 --- php4/TODO:1.108 Fri Jan 19 14:55:41 2001 +++ php4/TODO Wed Jan 24 11:16:43 2001 @@ -85,7 +85,6

[PHP-CVS] cvs: php4 /ext/standard array.c

2001-02-21 Thread Andrei Zmievski
andrei Wed Feb 21 09:22:27 2001 EDT Modified files: /php4/ext/standard array.c Log: Fix memory leak. Index: php4/ext/standard/array.c diff -u php4/ext/standard/array.c:1.94 php4/ext/standard/array.c:1.95 --- php4/ext/standard/array.c:1.94 Tue Feb 20

Re: [PHP-CVS] cvs: CVSROOT / avail gen_acl_file.m4

2001-02-23 Thread Andrei Zmievski
At 02:50 AM 2/24/01 +, Rasmus Lerdorf wrote: >rasmus Fri Feb 23 18:50:13 2001 EDT > > Modified files: > /CVSROOTavail gen_acl_file.m4 > Log: > More karma for Jesus I am sorry, but I did a double take when I read that... :) -Andrei -- PHP CVS

[PHP-CVS] cvs: CVSROOT / avail gen_acl_file.m4 loginfo

2001-02-27 Thread Andrei Zmievski
andrei Tue Feb 27 06:56:43 2001 EDT Modified files: /CVSROOTavail gen_acl_file.m4 loginfo Log: PHP Gtk web stuff. Index: CVSROOT/avail diff -u CVSROOT/avail:1.104 CVSROOT/avail:1.105 --- CVSROOT/avail:1.104 Mon Feb 26 11:34:09 2001 +++ CVSROOT/avail

[PHP-CVS] cvs: php4 /ext/standard basic_functions.c

2001-03-02 Thread Andrei Zmievski
andrei Fri Mar 2 12:22:14 2001 EDT Modified files: /php4/ext/standard basic_functions.c Log: @- Forced call_user_method() and call_user_method_array() to take the @ object argument by reference. (Andrei) * Forced call_user_method() and

  1   2   3   >