[PHP] PHP5 COM get/set property trouble

2004-03-02 Thread Daniel Daley
Hi, I'm having difficulty trying to use the com extension in php5. Here's the asp equivalent of what I'm trying to do. Set comobj = Server.CreateObject("MyComlib.ComLib") comobj.FieldValue = "somedata" myval = comobj.Property("Record") comobj.Property("Record") = "otherdata" My php code looks lik

RE: [PHP] IE6 with latest hotfixes breaks forms ...

2004-03-02 Thread Chris Shiflett
--- "Marc G. Fournier" <[EMAIL PROTECTED]> wrote: > What he said :) Sorry, I usually refer to him as ChrisB when there > could be confusion, forgot the B this time :( No problem. My apologies for the confusion. :-) Chris = Chris Shiflett - http://shiflett.org/ PHP Security - O'Reilly

[PHP] merge array

2004-03-02 Thread Max
Hello all, I have two arrays as follows: $x = array(3,4,6,8); $y = array(10,20,40,10); I need these arrays could be merged with '0' in between. Result expected : $x = array(1,2,3,4,5,6,7,8); $y = array(0,0,10,20,0,40,0,10); Can anybody help me ? Thanks in advance. Max

[PHP] Re: PHP application design with WAE UML.

2004-03-02 Thread Lukasz Karapuda
A very good tool for UML modeling is Microsoft Visio Professional 2002. I have found a very useful book on the subject of UML modeling for Web Applications: Building Web Applications with UML Second Edition By Jim Conallen Publisher : Addison Wesley Pub Date : October 04, 2002 ISBN : 0-201-

RE: [PHP] IE6 with latest hotfixes breaks forms ...

2004-03-02 Thread Marc G. Fournier
On Tue, 2 Mar 2004, Chris Bowlby wrote: > Hi Chris, > > He was referring to me actually :> I will be able to look it over today > and see if I can re-create the issue.. What he said :) Sorry, I usually refer to him as ChrisB when there could be confusion, forgot the B this time :( > > At 03:

RE: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Chris W. Parker
Chris Shiflett on Tuesday, March 02, 2004 3:56 PM said: > It loses all new data: [snip] > The method is fine, but it's no simpler than the other person's > suggestion when this specific scenario is considered. More logic is > necessary to prevent the loss of data.

Re: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Leif Gregory
Hello Charlie, Tuesday, March 2, 2004, 1:54:43 PM, you wrote: CFI> I'm creating a form with 170 fields, and I'd like to create an CFI> intermediary page so the user can review their info before CFI> submitting it again to the emailing script. Just a thought. I'm guessing you are dumping this stuf

Re: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Chris Shiflett
--- Marek Kilimajer <[EMAIL PROTECTED]> wrote: > This method does not lose any post data as the whole $_POST array is > serialized. Then it is unserialized back to $_POST array at the second > page. It loses all new data: Because of this: $_POST = unserialize(stripslashes($_POST['post']));

Re: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Marek Kilimajer
Chris Shiflett wrote: --- Marek Kilimajer <[EMAIL PROTECTED]> wrote: Let's not make it complicated: confirmation.php: email.php: $_POST = unserialize(stripslashes($_POST['post'])); I think the other person's suggestion (hidden fields) was made so that the original poster doesn't lose all ot

Re: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Chris Shiflett
--- Marek Kilimajer <[EMAIL PROTECTED]> wrote: > Let's not make it complicated: > > confirmation.php: > > > > email.php: > > $_POST = unserialize(stripslashes($_POST['post'])); I think the other person's suggestion (hidden fields) was made so that the original poster doesn't lose all other PO

Re: [PHP] Obtaining the image size with gd library

2004-03-02 Thread Marek Kilimajer
Todd Cary wrote: I have created a barcode with the gd library and I wish to use it directly with PDFLib. If I write the image to file and then read it in, all works well. However, PDFLib has a Virtual File System. To use it, I need the size of the image in bytes (the file size). Is there a

RE: [PHP] pop-up windows with a include

2004-03-02 Thread Chris W. Parker
Andre on Tuesday, March 02, 2004 3:23 PM said: > Hello hi. > I need to open one pop-up windows with a include > For example... > > > include("teste.php"); > > ?> > I need de window teste.php show in po-up . php is a server side technology. what you are

RE: [PHP] Re: why use safe mode?

2004-03-02 Thread Chris W. Parker
Chris Shiflett on Tuesday, March 02, 2004 3:25 PM said: > While I'm an ethical person and would never do anything malicious, I > don't trust everyone else to do the same. I personally feel that it is > irresponsible for Web hosts to have safe_mode disabled. why even

Re: [PHP] Re: why use safe mode?

2004-03-02 Thread Chris Shiflett
> Why do hosting providers (or anyone for that matter) choose to run PHP > with safe mode enabled? > > I've had problems running some of my scripts when safe mode is enabled, > so now I am seeking a new hosting service because the one I'm with > claims they cannot turn safe mode off for one account

[PHP] pop-up windows with a include

2004-03-02 Thread Andre
Hello I need to open one pop-up windows with a include For example... I need de window teste.php show in po-up . Obrigado André Caridade

Re: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Marek Kilimajer
Let's not make it complicated: confirmation.php: email.php: $_POST = unserialize(stripslashes($_POST['post'])); Daniel Clark wrote: You could loop throught the $_POST[] data and create 170 hidden fields with about 3 lines. When you create the "view" page store all of the passed variables

Re: [PHP] Doing things in the background

2004-03-02 Thread Lucas Gonze
One solution is to use a javascript body.write to output the HTML before you start processing, then do your processing, then issue another body.write to reset the URL of the current page to the result display page. - Lucas On Tue, 2 Mar 2004, Dan McCullough wrote: > > > Have a script where I n

[PHP] Obtaining the image size with gd library

2004-03-02 Thread Todd Cary
I have created a barcode with the gd library and I wish to use it directly with PDFLib. If I write the image to file and then read it in, all works well. However, PDFLib has a Virtual File System. To use it, I need the size of the image in bytes (the file size). Is there a function in the g

[PHP] Doing things in the background

2004-03-02 Thread Dan McCullough
Have a script where I need to submit a form and then while its doing its magic show a animated gif and then display the results. Also anyone know a good site for a document in indexing tables in mysql. dan mccullough sr. engineer url: heathermccullough.com tf: 866.298.3991 w: 603.444.9808 _

Re: [PHP] Session and Cookie issue

2004-03-02 Thread Chris Shiflett
--- Hardik Doshi <[EMAIL PROTECTED]> wrote: > I have selected Disable cookie option in the safari > browser setting on my MAC. Before selecting this > option, my website was working fine but after > disabling the cookie option, i am not able to log-in > to my website. There are at least two option

[PHP] Re: why use safe mode?

2004-03-02 Thread John Taylor-Johnston
>Just wondering why some do and some don't use safe mode, It comes set to off in php.ini. Paranoia likely, I don,t know. You are talking about this in php.ini? ; Safe Mode ; safe_mode=Off You might be able to turn it off in your script? Run phpinfo(); to see if it is available. Someoen with mor

Re: [PHP] Session and Cookie issue

2004-03-02 Thread Hardik Doshi
> > The problem is when i start a session > (session_start()), a cookie is > > automatically generated on the local machine > (PHPSESSID). > > This is expected and normal. If it is really a > problem for you, you should > probably explain why. I have selected Disable cookie option in the safari b

[PHP] Re: strip html

2004-03-02 Thread John Taylor-Johnston
Scrap that. Sorry. My fault. Understood. :) J John Taylor-Johnston wrote: > Is there a function to strip html from a string? > This function seems to stip out everything between the tags too, no? > http://www.php.net/manual/en/function.strip-tags.php > > John -- PHP General Mailing List (http:/

[PHP] strip html

2004-03-02 Thread John Taylor-Johnston
Is there a function to strip html from a string? This function seems to stip out everything between the tags too, no? http://www.php.net/manual/en/function.strip-tags.php John -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Daniel Clark
You could loop throught the $_POST[] data and create 170 hidden fields with about 3 lines. >> When you create the "view" page store all of the passed variables in >> hidden form fields. That way they can then be submitted on to the next >> script. >> > > I could do it that way, but I was hoping f

Re: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Chris Shiflett
--- Charlie Fiskeaux II <[EMAIL PROTECTED]> wrote: > Jay Blanchard wrote: > > > When you create the "view" page store all of the passed variables in > > hidden form fields. That way they can then be submitted on to the next > > script. > > I could do it that way, but I was hoping for a way of just

Re: [PHP] Session and Cookie issue

2004-03-02 Thread Chris Shiflett
--- Hardik Doshi <[EMAIL PROTECTED]> wrote: > The problem is when i start a session (session_start()), a cookie is > automatically generated on the local machine (PHPSESSID). This is expected and normal. If it is really a problem for you, you should probably explain why. > So for example if someo

Re: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Daniel Clark
That would be a great function, but I haven't heard of anything like that. > I'm creating a form with 170 fields, and I'd like to create > an intermediary page so the user can review their info > before submitting it again to the emailing script. > > Since the form has so much data, I was hoping

RE: [PHP] resubmitting $POST data to another script

2004-03-02 Thread André Ventura Lemos
No.. o_O I'll look into that, thanks On Tue, 2004-03-02 at 21:09, Matt Matijevich wrote: > > I already tried that, but had problems with ' ' " ". > > > Did you try the htmlentities function? -- I/O, I/O, It's off to disk I go, A bit or byte to read or write, I/O, I/O, I/O... signature.asc

Re: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Marek Kilimajer
serialize(), unserialize(), watch out for escaped quotes, you propably need to stripslashes() before unserialize(), then addslashes on each variable. Charlie Fiskeaux II wrote: I'm creating a form with 170 fields, and I'd like to create an intermediary page so the user can review their info bef

RE: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Matt Matijevich
I already tried that, but had problems with ' ' " ". Did you try the htmlentities function? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Charlie Fiskeaux II
Jay Blanchard wrote: When you create the "view" page store all of the passed variables in hidden form fields. That way they can then be submitted on to the next script. I could do it that way, but I was hoping for a way of just passing all the data at once; Since there's 170 fields, that's a lot

RE: [PHP] resubmitting $POST data to another script

2004-03-02 Thread André Ventura Lemos
I already tried that, but had problems with ' ' " ". On Tue, 2004-03-02 at 21:05, Jay Blanchard wrote: > [snip] > I'm creating a form with 170 fields, and I'd like to create > an intermediary page so the user can review their info > before submitting it again to the emailing script. > [/snip] >

Re: [PHP] resubmitting $POST data to another script

2004-03-02 Thread André Ventura Lemos
I had a similar problem, but with much lesser fields, so I passed the $_POST to $_SESSION, but I guess there's a more practical way to do this, or so I hope. Having said this, I'm also interested in an answear :-) On Tue, 2004-03-02 at 20:54, Charlie Fiskeaux II wrote: > I'm creating a form with 1

RE: [PHP] resubmitting $POST data to another script

2004-03-02 Thread Jay Blanchard
[snip] I'm creating a form with 170 fields, and I'd like to create an intermediary page so the user can review their info before submitting it again to the emailing script. [/snip] When you create the "view" page store all of the passed variables in hidden form fields. That way they can then be

[PHP] resubmitting $POST data to another script

2004-03-02 Thread Charlie Fiskeaux II
I'm creating a form with 170 fields, and I'd like to create an intermediary page so the user can review their info before submitting it again to the emailing script. Since the form has so much data, I was hoping I could just take the entire $POST array and pass it to the emailing script like a

[PHP] sessions timeout

2004-03-02 Thread André Ventura Lemos
Hi list :-) I'm using sessions to manage users, by using cookies to store the session. My question is, how do I make the session last _forever_? ATM the session lasts 'till the user closes the browser. Thanks -- I/O, I/O, It's off to disk I go, A bit or byte to read or write, I/O, I/O, I/O.

[PHP] why use safe mode?

2004-03-02 Thread Chris
Why do hosting providers (or anyone for that matter) choose to run PHP with safe mode enabled? I've had problems running some of my scripts when safe mode is enabled, so now I am seeking a new hosting service because the one I'm with claims they cannot turn safe mode off for one account. I have fo

[PHP] Session and Cookie issue

2004-03-02 Thread Hardik Doshi
Hi Group, I am using the session handling functions throughout my site. The problem is when i start a session (session_start()), a cookie is automatically generated on the local machine (PHPSESSID). So for example if someone has turned off the cookie option in his browser then he can't log-in to t

Re: [PHP] numeric characters

2004-03-02 Thread Daniel Clark
Or you can us client side JavaScripting. > Hello Dominique, > > Tuesday, March 2, 2004, 6:31:00 PM, you wrote: > > DA> Is there a way with php to force the user to put only numeric > character in a text field ? > > No, because that's a client-side thing. You can however use the PHP > function is_n

[PHP] Re: numeric characters

2004-03-02 Thread Ben Ramsey
If you wanted to force them to put in valid numeric characters, you would have to use JavaScript (client-side). However, if you wanted to verify the information from the server side, you could use is_numeric() to check whether the value is a number. http://www.php.net/is-numeric Dominique Ano

Re: [PHP] numeric characters

2004-03-02 Thread Richard Davey
Hello Dominique, Tuesday, March 2, 2004, 6:31:00 PM, you wrote: DA> Is there a way with php to force the user to put only numeric character in a text field ? No, because that's a client-side thing. You can however use the PHP function is_numeric() to check the data once it has been entered to e

[PHP] Re: Sessions, sessions and... sessions

2004-03-02 Thread Puiu Hrenciuc
I have make a workaround for my problem using MySQL for session storage and not using the PHP generated SIDs, but using some SID generated with something like this : $tsid=$_SERVER['HTTP_USER_AGENT'].'|'.$_SERVER['REMOTE_ADDR'].'|'; $tsid=md5(md5($tsid)); session_id($tsid); session_set_save_ha

[PHP] numeric characters

2004-03-02 Thread Dominique ANOKRE
Is there a way with php to force the user to put only numeric character in a text field ? thanks

[PHP] Re: Cookie Problems (Different than the post by David Jackson)

2004-03-02 Thread Puiu Hrenciuc
I bet you have some session management functions in include('lib/sessionfunc.php'); something like session_start() that also sends out header informations, but you can't send any headers AFTER you have started the output for eg: Some HTML output like: code1 will work ok, but code2 will fail

Re: [PHP] Sessions, sessions and... sessions

2004-03-02 Thread Michal Migurski
>I am a little desperate right now since I have tried to solve this >problem for 3-4 days now. I have developed a site that uses sessions for >user authentication and data storage between page access. The development >server is Apache1.3.24/MySQL4.1.0/PHP4.3.3/Win XP Pro The release server >is Apac

[PHP] Litespeed Web Server 1.3.1

2004-03-02 Thread LiteSpeed
We thought some one might be interested in a new high performance web platform for PHP scripting. Apologize to who are not interested. LiteSpeed Web Server 1.3.1 is released Litespeed Technologies is proud to bring you Litespeed web server 1.3.1. LiteSpeed Web Server is a full-featured, cross p

[PHP] MCRYPT Help

2004-03-02 Thread "Miguel J. Jiménez"
Hi, I have the following script that encode data using 3DES, but I cannot make a script to DECODE that data because all the tries return me thwe wrong string, can anybody tell me the right script to decode the data? Copied from PHP Manual: $td = mcrypt_module_open('tripledes', '', 'ecb', ''

Re: [PHP] Re: Sessions, sessions and... sessions

2004-03-02 Thread Daniel Clark
session.save_path string session.save_path defines the argument which is passed to the save handler. If you choose the default files handler, this is the path where the files are created. Defaults to /tmp. If session.save_path's path depth is more than 2, garbage collection will not be perfor

Re: [PHP] Re: Sessions, sessions and... sessions

2004-03-02 Thread Daniel Clark
I believe the PHP.INI has to be set with a Session variable temp directory. > Hi Puiu, > I've been having the same problem too. My code that worked up until > recently > just stopped working. I did change from using: >session_register("user_id"); >if (!(user_id)){ > > to usin

[PHP] Cookie Problems (Different than the post by David Jackson)

2004-03-02 Thread Brian J. Celenza
Here's a snippet of the code. I'm sending the setcookie header out long before any of the other headers, but I'm still getting: Warning: Cannot modify header information - headers already sent by (output started at C:\wwwroot\index.php:4) in C:\wwwroot\index.php on line 7 -Code-- Web

[PHP] Survey code

2004-03-02 Thread Alex Hogan
I need to take some surveys that contain complicated question answer schemes. Does anyone know of a good survey script (preferable), or some good tutorials they can point me to? I would like to find something that is free;-> alex hogan

[PHP] php4: session_start: Failed to initialize storage module. ...

2004-03-02 Thread Radi Shourbaji
Hello Everyone! For some reason one of my PHP based sites is generating this error periodically since moving it from a Windows server to a Linux (Fedora FC1) system. While the error is usually cleared by a simple refresh, it is a major annoyance and my site visitors are continually asking me a

[PHP] Session performance

2004-03-02 Thread Thiago Silva
Hello all, I was wondering... Why session data are stored on files rather than in on memory? People have been telling that acessing session data can be slow, and I need some kind of (fast) caching mechanism to store application data. After some search I found some php code that handles the session

Re: [PHP] gd and php 4.3.4

2004-03-02 Thread Rasmus Lerdorf
On Tue, 2 Mar 2004, Jerad Hampton wrote: > I was wondering if anyone could give me a bit of help with installing gd on a > freebsd > 5.2.1 with php 4.3.4 > > Is it best to use the bundled gd that comes with php 4.3.4 or to install it from the > source or ports? I would suggest using the bundl

[PHP] Re: php5

2004-03-02 Thread Vivian Steller
Carlos wrote: > hello ... I'm working with simplexml (php5) to manipulate the data in > xml file, but I'm having one problem. i'm not familiar with simplexml but with the dom functions and i think (as simplexml is based on dom) the simplexml objects will work with dom objects as well?! otherwise

[PHP] Re: Session performance

2004-03-02 Thread Andre Cerqueira
i got that doubt too than i checked the manual: http://www.php.net/session seems like it can cache, but the default is no cache using http://br.php.net/manual/en/function.session-cache-limiter.php , you can tune it (dont know how good it would do it) anyway... i use mysql heap table (it stays on

[PHP] Re: readfile error

2004-03-02 Thread Ashley
That worked. Didn't think about DNS as being the issue. Thanks for pointing me in the right direction. Ashley -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: interbase + php

2004-03-02 Thread Daniel Clark
I understand you can use base64_encode and decode. http://www.phpbuilder.com/manual/function.base64-encode.php >>> > i have the problem that i want to put an image into a firebird >>> database. >>> the >>> > problem is that when i copy the code of the image into my sql syntax, >> the >>> > code

[PHP] Re: readfile error

2004-03-02 Thread Puiu Hrenciuc
Can you try : readfile("http://ip.address.here/paperchase/blogger_rss.xml";) ? I don't know the cause, but I think replacing the host name with it's IP address would work... "Ashley" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I posted this on Novell's PHP forum, but I have not

[PHP] Session performance

2004-03-02 Thread Thiago Silva
Hello all, I was wondering... Why session data are stored on files rather than in on memory? People have been telling that acessing session data can be slow, and I need some kind of (fast) caching mechanism to store application data. After some search I found some php code that handles the session

Re: [PHP] readfile error

2004-03-02 Thread Ashley
Line 6 is: readfile($dataURL); $dataURL is a link to an xml file. It is a valid file because if I visit the link, I do get the file I am looking for, but reading it into PHP gives the described error message. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

[PHP] Re: session_id and cookie settings

2004-03-02 Thread Puiu Hrenciuc
Firs of all I think it would be easier to conult PHP Help before posting. Quoting from PHP Help - function session_destroy(): " [EMAIL PROTECTED] (18-Jan-2002 02:26) When users log in and out of your site they will keep the original session you have set for them. if you need to have this change on

Re: [PHP] session_id and cookie settings

2004-03-02 Thread Chris Shiflett
--- Torsten <[EMAIL PROTECTED]> wrote: > when I destroy my session and reload my index.php. I get the same > session_id() that was just destroyed before. I've checked it after > session_destroy() with echo session(); The function returned no value > anymore. But as I said, when starting a new sessi

[PHP] gd and php 4.3.4

2004-03-02 Thread Jerad Hampton
Hello, I was wondering if anyone could give me a bit of help with installing gd on a freebsd 5.2.1 with php 4.3.4 Is it best to use the bundled gd that comes with php 4.3.4 or to install it from the source or ports? For the required libraries again use the source or install from ports. Th

[PHP] session_id and cookie settings

2004-03-02 Thread Torsten
Hi, when I destroy my session and reload my index.php. I get the same session_id() that was just destroyed before. I've checked it after session_destroy() with echo session(); The function returned no value anymore. But as I said, when starting a new session the old session_id is reappearing. Only

[PHP] Connection with php and mssql by using jdbc driver ( freetds )

2004-03-02 Thread edwardspl
Dear All, If you are connecting php ( RPM package ) and mssql by jdbc driver freetds... please reply to me, I may need your help ! Many Many thank for your help ! Edward. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: interbase + php

2004-03-02 Thread Puiu Hrenciuc
I also think addslashes() and stripslashes() could be useful.. "Puiu Hrenciuc" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Why don't you use base64_encode and base64_decode functions ? > It will take about 33% more space but will be SQL and PHP safe . > > > "Markus Ecker" <[EMA

RE: Re[2]: [PHP] god damn "technical outsourcing.com"

2004-03-02 Thread Ryan A
Hi Rasmus, I think I can safely say, on behalf of everyone on the list: Thank you. -Ryan On 3/2/2004 4:03:04 PM, Rasmus Lerdorf ([EMAIL PROTECTED]) wrote: > Ok, gone. > > On Tue, 2 Mar 2004, Chris Sandy wrote: > > > Its [EMAIL PROTECTED] > > > > -Original Message- > > From: Rasmus Lerdo

Re: [PHP] readfile error

2004-03-02 Thread Richard Davey
Hello Ashley, Tuesday, March 2, 2004, 3:26:54 PM, you wrote: A> Warning: php_network_getaddresses: gethostbyname failed in 'insert path A> here' on line 6 A> Warning: A> readfile("http://jurist.law.pitt.edu/paperchase/blogger_rss.xml";) - A> Bad file number in 'insert path here' on line 6 A> Do

[PHP] readfile error

2004-03-02 Thread Ashley
I posted this on Novell's PHP forum, but I have not gotten a response. Hopefully, someone here can help me. <-- I was using the readfile function on a server that was running Apache 1.3.2, PHP 4.2.3 (PHP for Netware) and then switched to a different server running Apache 2.0.48, PHP 4.2.3 (PHP

[PHP] Re: interbase + php

2004-03-02 Thread Puiu Hrenciuc
Why don't you use base64_encode and base64_decode functions ? It will take about 33% more space but will be SQL and PHP safe . "Markus Ecker" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > hi all!! > > i have the problem that i want to put an image into a firebird database. the >

[PHP] interbase + php

2004-03-02 Thread Markus Ecker
hi all!! i have the problem that i want to put an image into a firebird database. the problem is that when i copy the code of the image into my sql syntax, the code contains ' and " and then php thinks that this is the end of the sql statement, although this is just data of the image. is there an

RE: Re[2]: [PHP] god damn "technical outsourcing.com"

2004-03-02 Thread Rasmus Lerdorf
Ok, gone. On Tue, 2 Mar 2004, Chris Sandy wrote: > Its [EMAIL PROTECTED] > > -Original Message- > From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 02, 2004 9:52 AM > To: Richard Davey > Cc: [EMAIL PROTECTED] > Subject: Re[2]: [PHP] god damn "technical outsourcing.com"

RE: Re[2]: [PHP] god damn "technical outsourcing.com"

2004-03-02 Thread Chris Sandy
Its [EMAIL PROTECTED] -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 9:52 AM To: Richard Davey Cc: [EMAIL PROTECTED] Subject: Re[2]: [PHP] god damn "technical outsourcing.com" On Tue, 2 Mar 2004, Richard Davey wrote: > Tuesday, March 2, 20

Re[2]: [PHP] god damn "technical outsourcing.com"

2004-03-02 Thread Rasmus Lerdorf
On Tue, 2 Mar 2004, Richard Davey wrote: > Tuesday, March 2, 2004, 2:35:23 PM, you wrote: > > RA> Also anybody else getting from AirAndHotel.com? > > Yes, AirAndHotel.com are a pain in the ass too. I don't think *anyone* > is in charge of this list. It just runs... That's not true. Simply send an

Re[2]: [PHP] god damn "technical outsourcing.com"

2004-03-02 Thread Richard Davey
Hello Ryan, Tuesday, March 2, 2004, 2:35:23 PM, you wrote: RA> Also anybody else getting from AirAndHotel.com? Yes, AirAndHotel.com are a pain in the ass too. I don't think *anyone* is in charge of this list. It just runs... -- Best regards, Richard Davey http://www.phpcommunity.org/wiki/296

RE: [PHP] god damn "technical outsourcing.com"

2004-03-02 Thread Ryan A
Also anybody else getting from AirAndHotel.com? > I agree too. > Now who do we contact for that? > This seems to be the latest in a string of idiots, the king was that > idiot > at hanmir.com > then came the challenge requests (ie: click here to prove your email is > not > spam, you > only have to

[PHP] Re: GMP problem

2004-03-02 Thread csko
Thanks for your fast answer, its working. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] god damn "technical outsourcing.com"

2004-03-02 Thread Ryan A
I agree too. Now who do we contact for that? This seems to be the latest in a string of idiots, the king was that idiot at hanmir.com then came the challenge requests (ie: click here to prove your email is not spam, you only have to do this once blah blah blah) and now this... :-( > I agree, these

Re: [PHP] GMP problem

2004-03-02 Thread André Ventura Lemos
http://packages.debian.org/stable/devel/libgmp2-dev On Tue, 2004-03-02 at 14:28, csko wrote: > Hi! > > I've some problems with installing the GMP module for PHP. > My system: Debian Linux 3.0 Woody > I've downloaded the source from php.net. > I cd-ed to its dir and typed ./configure --with-gmp >

[PHP] GMP problem

2004-03-02 Thread csko
Hi! I've some problems with installing the GMP module for PHP. My system: Debian Linux 3.0 Woody I've downloaded the source from php.net. I cd-ed to its dir and typed ./configure --with-gmp (i've recently installed GMP with apt-get install libgmp2) I have an error: checking for GNU gettext suppor

[PHP] [Stats] PHP Net List: February 2004

2004-03-02 Thread Bill Doerrfeld
-- Searchable archives for this list are available at --

Re: [PHP] Internal server error

2004-03-02 Thread Raditha Dissanayake
The server's error log will tell you the cause (most of the time) kringla wrote: We are using a web-hotel named b-one. Very often we stumble on 'internal server error 500' without any reason. I have not touched the php-pages and yet the problem occur. What should I do? Is there any possibilty

[PHP] php5

2004-03-02 Thread Carlos
hello ... I'm working with simplexml (php5) to manipulate the data in xml file, but I'm having one problem. I need manipulate the nodes (add and remove) . example I need add more one node and remove the node but I don't have idea ... somebody can help me ? Any example ... greats

RE: [PHP] Internal server error

2004-03-02 Thread Chris Sandy
They may be running mod_security and a badly configured mod_security can produce 500. I also noticed when compiling php as a cgi 90% of my code gave me 500 errors as well. -Original Message- From: kringla [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 8:39 AM To: [EMAIL PROTECT

[PHP] Internal server error

2004-03-02 Thread kringla
We are using a web-hotel named b-one. Very often we stumble on 'internal server error 500' without any reason. I have not touched the php-pages and yet the problem occur. What should I do? Is there any possibilty that my scrips are causing these errors? We also get the same errors when working

[PHP] sessions timeout

2004-03-02 Thread André Ventura Lemos
Hi list :-) I'm using sessions to manage users, by using cookies to store the session. My question is, how do I make the session last _forever_? ATM the session lasts 'till the user closes the browser. Thanks -- I/O, I/O, It's off to disk I go, A bit or byte to read or write, I/O, I/O, I/O.

[PHP] PHP5: static class variables

2004-03-02 Thread Vivian Steller
hello again, once again a question about class properties, this time more reasonable... Is there a possibility to check wether a static variable is set or not? will not show $var, cause it's static. an expression like if(MyClass::$somevar) {...} ends up to a fatal error because $som

[PHP] Re: Session and MS-IE6

2004-03-02 Thread Puiu Hrenciuc
Please provide the code where you set the $_SESSION['userid'] variable. "Pance" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > >Have you tried other browsers ? > I've tried MS-IE 5.5 and Mozilla 1.4b on my Win98 computer. They both work. > I've tried MS-IE6 on my clients Win98 comp

RE: [PHP] god damn "technical outsourcing.com"

2004-03-02 Thread Chris Sandy
I agree, these people need to be removed from the list. -Original Message- From: Richard Davey [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 7:03 AM To: php-general Subject: [PHP] god damn "technical outsourcing.com" Why oh why do people subscribe to this list and then set a bl

[PHP] Re: Sessions, sessions and... sessions

2004-03-02 Thread Puiu Hrenciuc
I don't use session_register(), just the $_SESSION global variable, so this is not it... :( "Pance" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi Puiu, > I've been having the same problem too. My code that worked up until recently > just stopped working. I did change from using

[PHP] Re: check if a variable is declared as private

2004-03-02 Thread Vivian Steller
Jakes wrote: > The word private says it all - If you create a object, > you are not going to be able to use it, because its > private to that class. Its a class variable, not a object variable > oh, yeah - your right of course... taking a look at get_object_vars($obj) output doesn't show private

[PHP] Re: check if a variable is declared as private

2004-03-02 Thread Jakes
The word private says it all - If you create a object, you are not going to be able to use it, because its private to that class. Its a class variable, not a object variable "Vivian Steller" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > is it possible to check if a varia

Re[2]: [PHP] Session and MS-IE6

2004-03-02 Thread Richard Davey
Hello Pance, Tuesday, March 2, 2004, 12:18:54 PM, you wrote: P> You are correct Richard. Thanks for stating the obvious. The reason I get P> the "undefined index.." error message is because IT DOES NOT EXIST. How does P> this resolve my "session" problem? You posted 2 lines of code, how are we s

Re: [PHP] reorder array

2004-03-02 Thread Richard Davey
Hello Diana, Tuesday, March 2, 2004, 12:06:55 PM, you wrote: DC> If I have an array as follows, and I want to re-order it so that it is in DC> order of seqnum , How could I do it? DC> [0] => Array DC> ( DC> [price] => 187.08 DC> [seqnum] => 2 DC> [

Re: [PHP] Session and MS-IE6

2004-03-02 Thread Pance
You are correct Richard. Thanks for stating the obvious. The reason I get the "undefined index.." error message is because IT DOES NOT EXIST. How does this resolve my "session" problem? Let me repeat - my code works with MS-IE 5.5 but not MS-IE6. Pance. "Richard Davey" <[EMAIL PROTECTED]> wrote

[PHP] reorder array

2004-03-02 Thread Diana Castillo
If I have an array as follows, and I want to re-order it so that it is in order of seqnum , How could I do it? Array ( [0] => Array ( [price] => 187.08 [seqnum] => 2 [roomdesc] => Standard ) [1] => Array (

[PHP] Re: Sessions, sessions and... sessions

2004-03-02 Thread Pance
Hi Puiu, I've been having the same problem too. My code that worked up until recently just stopped working. I did change from using: session_register("user_id"); if (!(user_id)){ to using: session_start(); if (!$_SESSION['user_id']){ Now it works with my comput

[PHP] Re: Sessions, sessions and... sessions

2004-03-02 Thread Pance
Hi Puiu, I've been having the same problem too. My code that worked up until recently just stopped working. I did change from using: session_register("user_id"); if (!(user_id)){ to using: session_start(); if (!$_SESSION['user_id']){ Now it works with my comput

  1   2   >