[PHP] Multiple PHP modules

2003-10-08 Thread Ryan Thompson
Just a quick question. I don't think it's possible but worth a try Is it possible to load two different PHP modules in apache having them linked to different virtual hosts? I'm hoping I can run one site with PHP 5 and another with 4.3.x -- Ryan Thompson [EMAIL PROTECTED] http://osgw.sourceforge

Re: [PHP] want to restart session after time out

2003-10-08 Thread Manisha Sathe
thanks all, If session has to time out then in that case what shall i do in following case ? I have a login page, user logins and starts playing (it is a on line game site), for each action (he tells something to do), i need to check whether he is login (i.e session on), if yes, then take all se

Re: [PHP] want to restart session after time out

2003-10-08 Thread Evan Nemerson
Comments inline On Wednesday 08 October 2003 10:23 pm, Chris Shiflett wrote: > --- Evan Nemerson <[EMAIL PROTECTED]> wrote: > > Well you can change the default from 30 mins to something larger, > > but that has security consequences... > > I am speaking to myself as much as anyone, but we should a

Re: [PHP] Variable Nightmare

2003-10-08 Thread Evan Nemerson
Okay I think this is what you want. If you want $myNewVarX too you should be able to figure it out. Check out php.net/manual/en/language.variables.variable.php for loop blah $myNewVar = ${'value'.$x}; Also, you may want to consider just naming every field "value[]", which results in $_

Re: [PHP] Appropriate Content

2003-10-08 Thread Evan Nemerson
I'd say [ANNOUNCEMENT] is fine... it's an easy regex ;). [ANNOUNCMENT] would be quite annoying, though! D'oh! My email client even includes a spell-checker (though it won't work on-the-fly... how passé ;) )... On Wednesday 08 October 2003 10:04 pm, Robert Cummings wrote: > On Thu, 2003-10-09 a

Re: [PHP] Variable Nightmare

2003-10-08 Thread Larry_Li
Yes. PHP supports this feature you need. for loop $i { $temp="value".$i; $myNewVar = $$temp; } Hope it help. Ryan Thompson <[EMAIL PROTECTED]> 10/09/2003 01:38 PM To: "richard cook" <[EMAIL PROTECTED]>, [EMAIL PROTECTED] cc: Subject:Re: [PHP

Re: [PHP] Variable Nightmare

2003-10-08 Thread Ryan Thompson
The server probably has global variables turn off Try $_GET['value1'], $_GET['value2'] If you using post method then replace $_GET with $_POST On Thursday 09 October 2003 00:51, richard cook wrote: > Hi all, > I have a problem that I cant solve, any help would be welcomed! > > > I have a fo

Re: [PHP] want to restart session after time out

2003-10-08 Thread Chris Shiflett
--- Evan Nemerson <[EMAIL PROTECTED]> wrote: > Well you can change the default from 30 mins to something larger, > but that has security consequences... I am speaking to myself as much as anyone, but we should all try to develop the habit of explaining any such "consequences" that we mention. To d

[PHP] Variable Nightmare

2003-10-08 Thread richard cook
Hi all, I have a problem that I cant solve, any help would be welcomed! I have a form which is repeated by a for loop, the form has one element an input field. The problem im having is the name of this field for example ive used the following to name it: for loop here } So the input name

Re: [PHP] Appropriate Content

2003-10-08 Thread Robert Cummings
On Thu, 2003-10-09 at 01:12, Chris Shiflett wrote: > --- Evan Nemerson <[EMAIL PROTECTED]> wrote: > > Robert had the courtesy to put [ANNOUNCMENT] in the header. > > Yes, a courtesy which is appreciated by many. :-) > > The prefix is traditionally [ANNOUNCE], however, at least on several other >

Re: [PHP] want to restart session after time out

2003-10-08 Thread Evan Nemerson
Well you can change the default from 30 mins to something larger, but that has security consequences... The problem with only closing when the user closes their browser is there's no way of knowing when that happens. Sessions are kind of a hack over HTTP, which is pretty much a stateless protoc

Re: [PHP] Appropriate Content

2003-10-08 Thread Chris Shiflett
--- Evan Nemerson <[EMAIL PROTECTED]> wrote: > Robert had the courtesy to put [ANNOUNCMENT] in the header. Yes, a courtesy which is appreciated by many. :-) The prefix is traditionally [ANNOUNCE], however, at least on several other mailing lists I subscribe to. Chris = My Blog http://s

Re: [PHP] Appropriate Content

2003-10-08 Thread Robert Cummings
On Thu, 2003-10-09 at 00:45, Curt Zirzow wrote: > * Thus wrote Robert Cummings ([EMAIL PROTECTED]): > > On Wed, 2003-10-08 at 23:51, Evan Nemerson wrote: > > > Hey everyone. > > > > > > I just saw the lightspeed 1.1 release announcement. I know it's not in the > > > rules right now, but I don't t

Re: [PHP] want to restart session after time out

2003-10-08 Thread Chris Shiflett
--- Manisha Sathe <[EMAIL PROTECTED]> wrote: > I want to make use of sessions. Very new to this part. I read a lot > about it. Now know how to register / start etc. > > I understand that session terminates after time out (specified in > php.ini file e.g 30 mins). But I do not want session to be >

Re: [PHP] Appropriate Content

2003-10-08 Thread Evan Nemerson
I don't recall it coming up (I've been here for a while), and except for http://marc.theaimsgroup.com/?l=php-general&m=102078334230534&w=2 I can't find it any the archive. Can you provide URL or a hint for what to search for? According to that message, Rasmus approves of "open-source non-commer

Re: [PHP] Appropriate Content

2003-10-08 Thread Evan Nemerson
Sounds good to me, what do other people think? Definitely agree with the contribute and get free ad space idea. On Wednesday 08 October 2003 09:57 pm, Chris Shiflett wrote: > I tend to think that PHP-specific product announcements are fine, so long > as they are courteous enough to prefix the s

Re: [PHP] About PHP introduction

2003-10-08 Thread Evan Nemerson
What kind of presentation? If it helps, http://www.coeus-group.com/qwik-e-wiki.php/lamp It's a wiki, so if you do find some useful information, please contribute. On Wednesday 08 October 2003 09:54 pm, Uma Shankari T. wrote: > Hello, > >I need to give a presentation about php & mysql. Can an

Re: [PHP] Appropriate Content

2003-10-08 Thread Evan Nemerson
For those who don't remember, http://marc.theaimsgroup.com/?l=php-general&m=106390994201654&w=2 Which brings up an good point. Robert had the courtesy to put [ANNOUNCMENT] in the header. Perhaps a "guideline" that says something like "Product announcements are acceptable, provided the subject is

[PHP] Re: Any idea how to do this?

2003-10-08 Thread Manisha Sathe
sorry, wrong posting "Manisha Sathe" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I am a newbie to php specially sessions part. I read a lot about it. > > On my site user needs to login. The session will be created and some info > will be stored into it. Session will be ON for s

[PHP] want to restart session after time out

2003-10-08 Thread Manisha Sathe
Hi, I want to make use of sessions. Very new to this part. I read a lot about it. Now know how to register / start etc. I understand that session terminates after time out (specified in php.ini file e.g 30 mins). But I do not want session to be terminated like this. I want to terminate session o

Re: [PHP] About PHP introduction

2003-10-08 Thread Chris Shiflett
--- "Uma Shankari T." <[EMAIL PROTECTED]> wrote: > Can any one please tell me the url there i can find useful stuffs > about php & mysql ?? That's a vague question, but... http://www.php.net/ http://www.mysql.com/ Hope that helps. Chris = My Blog http://shiflett.org/ HTTP Developer's

Re: [PHP] Appropriate Content

2003-10-08 Thread Chris Shiflett
I tend to think that PHP-specific product announcements are fine, so long as they are courteous enough to prefix the subject with [ANNOUNCE] as is standard on many lists. This allows those who don't want this content an easy way to filter (whether automatically or manually by scanning subjects). I

[PHP] Re: Any idea how to do this?

2003-10-08 Thread Manisha Sathe
I am a newbie to php specially sessions part. I read a lot about it. On my site user needs to login. The session will be created and some info will be stored into it. Session will be ON for some predefined time (given in ini file e.g 30 mins). The session will die after that time ( according to wh

[PHP] About PHP introduction

2003-10-08 Thread Uma Shankari T.
Hello, I need to give a presentation about php & mysql. Can any one please tell me the url there i can find useful stuffs about php & mysql ?? Regards, Uma -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Appropriate Content

2003-10-08 Thread Tom Rogers
Hi, Thursday, October 9, 2003, 1:51:22 PM, you wrote: EN> Hey everyone. EN> I just saw the lightspeed 1.1 release announcement. I know it's not in the EN> rules right now, but I don't think product announcements are really EN> appropriate for php-general. I can see, "Hey we've got this new serv

Re: [PHP] Appropriate Content

2003-10-08 Thread Jason Wong
On Thursday 09 October 2003 12:37, Evan Nemerson wrote: > For the record, in case anyone is misunderstanding me, I don't think > commercial / F/OSS should matter in this regard. Product announcements are > product announcments. > > Anyone else have an opinion? This is a well trodden debate. See ar

Re: [PHP] Appropriate Content

2003-10-08 Thread Evan Nemerson
For the record, in case anyone is misunderstanding me, I don't think commercial / F/OSS should matter in this regard. Product announcements are product announcments. Anyone else have an opinion? On Wednesday 08 October 2003 09:19 pm, Robert Cummings wrote: > On Wed, 2003-10-08 at 23:51, Evan

Re: [PHP] Appropriate Content

2003-10-08 Thread Curt Zirzow
* Thus wrote Evan Nemerson ([EMAIL PROTECTED]): > Hey everyone. > > I just saw the lightspeed 1.1 release announcement. I know it's not in the > rules right now, but I don't think product announcements are really > appropriate for php-general. I can see, "Hey we've got this new server and we >

Re: [PHP] Appropriate Content

2003-10-08 Thread Curt Zirzow
* Thus wrote Robert Cummings ([EMAIL PROTECTED]): > On Wed, 2003-10-08 at 23:51, Evan Nemerson wrote: > > Hey everyone. > > > > I just saw the lightspeed 1.1 release announcement. I know it's not in the > > rules right now, but I don't think product announcements are really > > appropriate for p

Re: [PHP] Re: Check for page change efficiently [was Re: Creating a blogrolling/link management system]

2003-10-08 Thread Curt Zirzow
* Thus wrote Kevin Stone ([EMAIL PROTECTED]): > > "Paul Van Schayck" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > [EMAIL PROTECTED] (Kevin Stone) wrote > > Hello Kevin. > > > > > This is just a thought.. I have never employed this method > > > personally.. but I suppose you cou

Re: [PHP] Appropriate Content

2003-10-08 Thread Robert Cummings
On Wed, 2003-10-08 at 23:51, Evan Nemerson wrote: > Hey everyone. > > I just saw the lightspeed 1.1 release announcement. I know it's not in the > rules right now, but I don't think product announcements are really > appropriate for php-general. I can see, "Hey we've got this new server and we

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread Robert Cummings
On Thu, 2003-10-09 at 00:09, John Nichel wrote: > Did I miss the PHP question in this post? > Oh nooo, if you look real close you can see it buried way down near the bottom. :/ > > content, PHP performance meets or exceeds that of Apache's mod_php. SSL > > performance is doubled at leas

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread John Nichel
Did I miss the PHP question in this post? LiteSpeed Information wrote: We glad to introduce you LiteSpeed Web Server 1.1. About: LiteSpeed Web Server is a full-featured, high-performance, secure, and easy-to-use Web server that runs on Unix and Linux. It supports HTTP/1.1, SSL, CGI, FastCGI, P

Re: [PHP] php unlink a file - is it possible?

2003-10-08 Thread Evan Nemerson
Unless you change the permissions of the file, the run the FTP as nobody, run apache as the ftp user, run apache as root (can't believe I even said that... blasphemy!), etc., it shouldn't be possible. If you find a way to do it w/out any of the above, I'd suggest you email the Apache Software F

[PHP] Appropriate Content

2003-10-08 Thread Evan Nemerson
Hey everyone. I just saw the lightspeed 1.1 release announcement. I know it's not in the rules right now, but I don't think product announcements are really appropriate for php-general. I can see, "Hey we've got this new server and we need PHP people to beta test it.", but not "Hey we've got th

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread Evan Nemerson
Wha? chroot is a good thing to have, even though it's not available in apache... and they're not using it, yet- they want to be... Maybe I misunderstood you? On Wednesday 08 October 2003 12:51 pm, Leif K-Brooks wrote: > LiteSpeed Information wrote: > > What we are waiting for are extra securit

Re: [PHP] shell_exec question

2003-10-08 Thread John Nichel
Is there a .htaccess file in (or above) the directory that the script is in? If so, look to see if safe mode is turned on there. Chris Blake wrote: On Wed, 2003-10-08 at 15:23, Marek Kilimajer wrote: Then check your httpd.conf for php_(admin_)?(flag|value) OK, so I`ve tried all the suggesti

[PHP] php unlink a file - is it possible?

2003-10-08 Thread Alex Shi
Hi, How can have a php script unlink/delete a file uploaded via FTP? Usually a ftp-uploaded file belongs to the ftp user, and a php script is running by apache/nobody. Seems like there shouldn't be any way to do this...OK, my situation is that I want a php script to this: it can move bulk uploade

Re: [PHP] Re: PHP & CSS

2003-10-08 Thread Raditha Dissanayake
Hi David, I think he's suggesting parsing and rewriting the CSS files - treating them as INI files. Nopes definitely not. Personally, I think XSLT os overkill for this, but then I think it's a pig's ear fullstop. Yes everyone is entitled to his opinion. :-) Write a script that opens your CSS fi

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread LiteSpeed
So it is basically like TUX, a kernel-based web server? No, it runs completely in user space and be able to match TUX's performance for static content. Best regards, LiteSpeed Team -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread Eugene Lee
On Wed, Oct 08, 2003 at 11:56:51AM -0400, LiteSpeed Information wrote: : : We glad to introduce you LiteSpeed Web Server 1.1. So it is basically like TUX, a kernel-based web server? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] pasted text from word

2003-10-08 Thread Justin French
Hi all, I'm interested in alternative solutions (to those found in the comments on http://au.php.net/htmlspecialchars) for dealing with text pasted into a textarea from Word et al. I want a way of 'dumbing down' certain characters (like quotes) before putting them through my own smart quotes e

Re: [PHP] File upload meter

2003-10-08 Thread Raditha Dissanayake
Hi I remembers seeing something about this in Zend.com sometime back but sadly i have forgotten which one it was. I can assure you it most certainly isn't my progress meter because the architecture is different :-) best regards Hardik Doshi wrote: Hi Radhitha, Can you please let me know which

[PHP] imagepsloadfont on mac os x

2003-10-08 Thread Michael Winston
Hi- I'm trying to get imagepsloadfont() to work. I'm on OS X and know next to nothing about font types or how the Mac might handle them differently. Basically, using the below code, I'm trying to call up Skia.dfont, one of the fonts that comes with OS X. The code I'm using is straight from

Re: [PHP] function to show time passed since event

2003-10-08 Thread Nathan Taylor
Sure, this isn't tough at all as long as you keep track of your times. When the user logs in store the time() in a cookie or database. Then to check the time since do this \n"; echo "Then: ".date("m/d/y g:ia", $timesince)."\n"; ?> That should be right, I think... - Original Message

Re: Re[2]: [PHP] Re: PHP & CSS

2003-10-08 Thread Curt Zirzow
On Wed, 8 Oct 2003 09:44:53 -0700, Raquel Rice wrote: On Thu, 9 Oct 2003 02:00:20 +1000 Tom Rogers <[EMAIL PROTECTED]> wrote: You don't need to call your style sheets .css they can be just as easily called.php and even have a querystring attached like subsite.php?user=fred That way just use php a

[PHP] function to show time passed since event

2003-10-08 Thread Chris W. Parker
Hiya. Tried searching google with no luck on this one. I'd like a function that when passed a time will spit back in plain english how much time has passed. i.e. You logged in "one hour ago". Anyone got da hookup? Thanks, Chris. p.s. Now with signature! -- Don't like reformatting your

Re: [PHP] Credit Card Validation

2003-10-08 Thread Nathan Taylor
I'll take a look through that and do as much further research as is possible. Thanks. - Original Message - From: Craig Lonsbury To: Nathan Taylor ; php-general Sent: Wednesday, October 08, 2003 4:04 PM Subject: RE: [PHP] Credit Card Validation this is a good explanation of

Re: [PHP] Credit Card Validation

2003-10-08 Thread Nathan Taylor
The fact is I just pulled up google and typed in PHP-General Archives and clicked the first thing I came up with. Thanks for the link though. - Original Message - From: Becoming Digital To: php-general Sent: Wednesday, October 08, 2003 4:10 PM Subject: Re: [PHP] Credit Card V

Re: [PHP] Hotmail servers, Was RE: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread Dennis Sterzenbach
"Dpcma Metalito" <[EMAIL PROTECTED]> wrote : > Why don´t we stop talking about Microsoft and products that they don´t own? > Reason: Can you imagine that Microsoft would show interest about PHP? Can > you imagine Ms Visual PHP? we´ll get a non-working scripting non-free > language while Microso

Re: Re[4]: [PHP] Re: PHP & CSS

2003-10-08 Thread erythros
it sounds like she using the ini as a user css. so wouldn't it be simpler to just rename the ini to css, rather than use php to get values from the ini and apply them to the current css? then all she has to do is follow davids adivce for the users css files: Write a script that opens your CSS fi

Re: [PHP] Hotmail servers, Was RE: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread DPCMA Metalito
Why don´t we stop talking about Microsoft and products that they don´t own? Reason: Can you imagine that Microsoft would show interest about PHP? Can you imagine Ms Visual PHP? we´ll get a non-working scripting non-free language while Microsoft think ASP it´s better than PHP and is not a th

[PHP] Hotmail servers, Was RE: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread Andrew Whyte
I hate to continue this thread at all, but... > -Original Message- > From: Jason Wong [mailto:[EMAIL PROTECTED] > Sent: Thursday, 9 October 2003 6:04 AM > To: [EMAIL PROTECTED] > > On Thursday 09 October 2003 00:44, Robert Cummings wrote: > > > *heheh* That's like the smarty template s

Re: [PHP] HTML Printing problem.

2003-10-08 Thread Burhan Khalid
php coder wrote: Issue: HTML files are to large to print from the browser. We are creating reports that are ++5 mg in size. This is a real problem for the browser. Define "real problem". Is your site timing out because the files are too large? I've never heard of a browser having problems with

Re: [PHP] configuration class - skeleton code for first OOP adventure

2003-10-08 Thread Burhan Khalid
anders thoresson wrote: My first larger project is growing out of control. I've spent some weeks reading OOP tutorials, and feel ready to make my first dive into a new programming style. One of the things that led me this way was the need for user configuration of my project. Therefor, I'll sta

[PHP] Re: Credit Card Validation

2003-10-08 Thread Manuel Lemos
Hello, On 10/08/2003 05:03 PM, Nathan Taylor wrote: I am sure this has been asked many times before, but I couldn't seem to find a recent PHP4-based thread in the logs at phpbuilder.com; so either I'm incompetent or it doesn't exist. My question is pretty obvious, I was wondering what the process

[PHP] Re: Check for page change efficiently [was Re: Creating a blogrolling/link management system]

2003-10-08 Thread Kevin Stone
"Paul Van Schayck" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > [EMAIL PROTECTED] (Kevin Stone) wrote > Hello Kevin. > > > This is just a thought.. I have never employed this method > > personally.. but I suppose you could read the page into a string and > > use the md5() functio

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread LiteSpeed Information
No doubt, Apache is a good web server, everyone use it. ;-) What the heck? Is this thread headed somewhere? Sorry about this, Kirk. This thread should stop here. We can discuss it off the list if needed.

Re: [PHP] Saving Form Data

2003-10-08 Thread PHP
Here is the real life idea: A Supervisor, knows nothing about php, creates a simple form, say a time sheet, in something like FrontPage. He then uploads that form to the server. An employee then looks at a page on the server that will retrieve the form data that the supervisor made, and automatical

RE: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread Robert Cummings
On Wed, 2003-10-08 at 16:48, Johnson, Kirk wrote: > > > > No doubt, Apache is a good web server, everyone use it. ;-) > > > > What the heck? > > Is this thread headed somewhere? Into the future? :/ Cheers, Rob. -- .. | InterJinn Appl

RE: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread Johnson, Kirk
> > No doubt, Apache is a good web server, everyone use it. ;-) > > What the heck? Is this thread headed somewhere? Kirk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread Leif K-Brooks
LiteSpeed Information wrote: No doubt, Apache is a good web server, everyone use it. ;-) What the heck? -- The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law. -- PHP General Mailing List (http://www.

Re: [PHP] Saving Form Data

2003-10-08 Thread Marek Kilimajer
PHP wrote: Thanks, I thought of this, unfortuanetly the user uploading the form would have no clue in being able to build the form with the $_POST tags already in it. I lost you. What are you trying to do? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Saving Form Data

2003-10-08 Thread PHP
Thanks, I thought of this, unfortuanetly the user uploading the form would have no clue in being able to build the form with the $_POST tags already in it. > PHP wrote: > > Hi, > > Is there anyway of saving a form with layout and data, without knowing what the fields are? > > I would like to be ab

Re: [PHP] Saving Form Data

2003-10-08 Thread Marek Kilimajer
PHP wrote: Hi, Is there anyway of saving a form with layout and data, without knowing what the fields are? I would like to be able to have the use "Upload" there own form. Then that form can be later viewed and filled out by someone else and be able to save all the data that was entered. I can do t

[PHP] Re: Check for page change efficiently [was Re: Creating a blogrolling/link management system]

2003-10-08 Thread Paul van Schayck
[EMAIL PROTECTED] (Kevin Stone) wrote Hello Kevin. > This is just a thought.. I have never employed this method > personally.. but I suppose you could read the page into a string and > use the md5() function to generate a hexidecimal value based on that > string. Store the hex value in a database

Re: [PHP] Saving Form Data

2003-10-08 Thread PHP
Unfortuanetly that would only work for Text and Textarea types. It wouldn't really for for a select, bcause how do you know which option of the form was selected? How do you select the correct option without knowing what the other options are? Ex, a user uploads a form with a select type like so:

Re: [PHP] configuration class - skeleton code for first OOP adventure

2003-10-08 Thread Marek Kilimajer
anders thoresson wrote: foreach ($changedValues as $changedValue) { $new_contents = ereg_replace($changedValue[old], $changedValue[new], $contents); $contents = $new_contents; } This will not work. For example if you have: option1 = value; option2 = value2; then ereg_repla

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread LiteSpeed Information
If they aren't available with Apache either, why are you still using it? No doubt, Apache is a good web server, everyone use it. ;-) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Credit Card Validation

2003-10-08 Thread Becoming Digital
There are a few classes in the Repository. Check the link below. http://phpclasses.promoxy.com/browse.html/class/19.html Not to discount PHP Builder, but I generally find less useful info there than I do at DevShed.com, DevArticles.com, etc. The structure of the site certainly doesn't make the

Re: [PHP] PDFlib Page Dimensions and Word Wrap

2003-10-08 Thread Jason Wong
On Wednesday 08 October 2003 23:34, Roger Spears wrote: > I have read the http://us4.php.net/manual/en/ref.pdf.php and am unable > to find a solution for what I'm trying to do. I've also tried googling > for what I'm trying to do. No luck there either. I've also downloaded > the PDFlib docs but

[PHP] Re: Check for page change efficiently [was Re: Creating a blogrolling/link management system]

2003-10-08 Thread Kevin Stone
"Chris" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > [EMAIL PROTECTED] (Paul Van Schayck) wrote in > news:[EMAIL PROTECTED]: > > > First of all you need to check with the website you are going to check > > if they really enjoy all bandwith required. And people will not see > >

RE: [PHP] Credit Card Validation

2003-10-08 Thread Craig Lonsbury
this is a good explanation of the validation you can do. http://www.beachnet.com/~hstiles/cardtype.html if you are trying to validate client-side you'll need javascript, which is why there may not be anything on phpbuilder i have no idea about the bank side, but post any info you find out back he

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread Jason Wong
On Thursday 09 October 2003 00:44, Robert Cummings wrote: > *heheh* That's like the smarty template site not using smarty. Or back > in the day when hotmail was owned by Microsoft but still running off > linux. I believe it's still the case. The frontend runs on MS servers but the backend which

RE: [PHP] Saving Form Data

2003-10-08 Thread Jay Blanchard
[snip] Is there anyway of saving a form with layout and data, without knowing what the fields are? I would like to be able to have the use "Upload" there own form. Then that form can be later viewed and filled out by someone else and be able to save all the data that was entered. I can do this easy

[PHP] Saving Form Data

2003-10-08 Thread PHP
Hi, Is there anyway of saving a form with layout and data, without knowing what the fields are? I would like to be able to have the use "Upload" there own form. Then that form can be later viewed and filled out by someone else and be able to save all the data that was entered. I can do this easy

[PHP] Credit Card Validation

2003-10-08 Thread Nathan Taylor
Hey guys (and gals), I am sure this has been asked many times before, but I couldn't seem to find a recent PHP4-based thread in the logs at phpbuilder.com; so either I'm incompetent or it doesn't exist. My question is pretty obvious, I was wondering what the process for validating a credit car

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread Leif K-Brooks
LiteSpeed Information wrote: What we are waiting for are extra security features: "chroot"(almost done) and "auto-ban". They are not available on Apache either we believe. If they aren't available with Apache either, why are you still using it? -- The above message is encrypted with double rot13

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread LiteSpeed Information
Our recommendation is, to setup your server environment with Apache first, make sure every thing works, then run LiteSpeed in parallel on different port, sharing the document root, then stop Apache and switch LiteSpeed to port 80. If anything goes wrong, switch back to Apache. The migration co

Re: [PHP] Re: PHP & CSS

2003-10-08 Thread David Otton
On Wed, 8 Oct 2003 08:49:17 -0700, you wrote: >On Wed, 08 Oct 2003 20:34:51 +0600 >Raditha Dissanayake <[EMAIL PROTECTED]> wrote: >> Raquel Rice wrote: >> >Well, yes ... in a way. The plan is to have a main site, where >> >users can have a subsite off the main site. I want to give the >> >user

Re[2]: [PHP] dynamic -> static

2003-10-08 Thread Mike Migurski
>As I wrote already this issue is mainly because of search engines >incompatibility with dynamic content sites (to be more exact - with urls >containing get parameters, in my case ex. index.shtml?lang=en&menu_id=23) > >Which of your described solution would you suggest for my situation ? > >Turck M

Re: [PHP] Re: configuration class - skeleton code for first OOP adventure

2003-10-08 Thread Paul van Schayck
[EMAIL PROTECTED] (Anders Thoresson) wrote >You mean that I don't need a separate function for >setConfigurationFile, >but could rather include the controlling code in my constructor? Yup. Polleke -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub

[PHP] Re: Check for page change efficiently [was Re: Creating a blogrolling/link management system]

2003-10-08 Thread Paul van Schayck
Hello, [EMAIL PROTECTED] (Chris) wrote > I'm not sure I understand-- I want to check to see if their page has > changed once each day and, if so, I will highlight that link in my > list... I doubt most web sites would have a problem with one hit per > day :) Don't know much about blogs ;). I tho

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread Leif K-Brooks
LiteSpeed Information wrote: Thank you for your interest. Our recommendation is, to setup your server environment with Apache first, make sure every thing works, then run LiteSpeed in parallel on different port, sharing the document root, then stop Apache and switch LiteSpeed to port 80. If any

[PHP] Check for page change efficiently [was Re: Creating a blogrolling/link management system]

2003-10-08 Thread Chris
[EMAIL PROTECTED] (Paul Van Schayck) wrote in news:[EMAIL PROTECTED]: > First of all you need to check with the website you are going to check > if they really enjoy all bandwith required. And people will not see > their banners anymore. I'm not sure I understand-- I want to check to see if the

Re: [PHP] Re: configuration class - skeleton code for first OOP adventure

2003-10-08 Thread anders thoresson
I'm not a OO expert but I think you could include the SetConfigurationFile () function in your contructor. And if it fails inside the constructor exit to your other class controlling errors. You mean that I don't need a separate function for setConfigurationFile, but could rather include the co

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread LiteSpeed Information
Ryan, Thank you for your interest. Our recommendation is, to setup your server environment with Apache first, make sure every thing works, then run LiteSpeed in parallel on different port, sharing the document root, then stop Apache and switch LiteSpeed to port 80. If anything goes wrong, switc

Re[2]: [PHP] dynamic -> static

2003-10-08 Thread Veniamin Goldin
Hello Mike, Thank you for your help, As I wrote already this issue is mainly because of search engines incompatibility with dynamic content sites (to be more exact - with urls containing get parameters, in my case ex. index.shtml?lang=en&menu_id=23) Which of your described solution would you sug

RE: [PHP] Congratulations You Win

2003-10-08 Thread Dan Joseph
Excellent! We all win again! Retirement here I come! -Dan Joseph > -Original Message- > From: Francis Weeny [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 08, 2003 10:39 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Congratulations You Win > > > SUNSWEETWIN PROMO LOTTERY,THE NETHE

Re: [PHP] Congratulations You Win

2003-10-08 Thread Kevin Bruce
WOW! who's ALREADY jumped on this??? I can't wait to give him my bank account #!!! I'm going to be RICH! ;) > WTF is this? > - Original Message - > From: Francis Weeny > To: [EMAIL PROTECTED] > Sent: Wednesday, October 08, 2003 10:30 PM > Subject: [PHP] Congratulations You Win > > >

[PHP] Re: Creating a blogrolling/link management system

2003-10-08 Thread Paul van Schayck
Hello, [EMAIL PROTECTED] (Chris) wrote > What I am wondering is what is the best approach for detecting > "recently changed" links? I could use various files put out by > blogger.com or blo.gs, etc. to check sites that use those services, > but while being much more efficient than actually checkin

[PHP] Congratulations You Win

2003-10-08 Thread Francis Weeny
SUNSWEETWIN PROMO LOTTERY,THE NETHERLANDS. ALFONSTRAAT B56, 1002 BS AMSTERDAM, THE NETHERLANDS. TO THE MANAGER FROM: THE DESK OF THE PROMOTIONS MANAGER, INTERNATIONAL PROMOTIONS/PRIZE AWARD DEPARTMENT, REF: OYL /26510460037/02 BATCH: 24/00319/IPD ATTENTION: RE/ AWARD NOTIFICATION; FINAL NOTICE We a

[PHP] Re: configuration class - skeleton code for first OOP adventure

2003-10-08 Thread Paul van Schayck
Hello, [EMAIL PROTECTED] (Anders Thoresson) wrote > Is this a good start, or should I change anything? I'm not a OO expert but I think you could include the SetConfigurationFile () function in your contructor. And if it fails inside the constructor exit to your other class controlling errors. P

[PHP] RE: {Spam?} [PHP] Congratulations You Win

2003-10-08 Thread Chris W. Parker
Francis Weeny on Wednesday, October 08, 2003 7:30 PM said: > SUNSWEETWIN PROMO LOTTERY,THE NETHERLANDS. [snip great news] YES!!! WE'RE RICH!! c. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Congratulations You Win

2003-10-08 Thread Nathan Taylor
WTF is this? - Original Message - From: Francis Weeny To: [EMAIL PROTECTED] Sent: Wednesday, October 08, 2003 10:30 PM Subject: [PHP] Congratulations You Win SUNSWEETWIN PROMO LOTTERY,THE NETHERLANDS. ALFONSTRAAT B56, 1002 BS AMSTERDAM, THE NETHERLANDS. TO THE MAN

[PHP] Congratulations You Win

2003-10-08 Thread Francis Weeny
SUNSWEETWIN PROMO LOTTERY,THE NETHERLANDS. ALFONSTRAAT B56, 1002 BS AMSTERDAM, THE NETHERLANDS. TO THE MANAGER FROM: THE DESK OF THE PROMOTIONS MANAGER, INTERNATIONAL PROMOTIONS/PRIZE AWARD DEPARTMENT, REF: OYL /26510460037/02 BATCH: 24/00319/IPD ATTENTION: RE/ AWARD NOTIFICATION; FINAL NOTICE We a

[PHP] Creating a blogrolling/link management system

2003-10-08 Thread Chris
I'm looking at using PHP to create a link/bookmark system similar to blogrolling.com, but for many links both weblog and not. Basically the system would archive 3-500 links, display them hierarchically, etc. Standard stuff that I see a lot of PHP code for. What I am wondering is what is the be

Re: [PHP] LiteSpeed Web Server 1.1

2003-10-08 Thread LiteSpeed Information
Mind explaining this? Not at all, :-), this is not the first time, people questions why we still use Apache. $ telnet litespeedtech.com 80 HEAD / HTTP/1.1 Host: litespeedtech.com HTTP/1.1 200 OK Date: Wed, 08 Oct 2003 16:36:18 GMT Server: Apache <--

Re: [PHP] RE: HTML Printing problem.

2003-10-08 Thread php coder
I am aware of the printer functions in php but as far as I know you can not print an html document with them. It will just print the html code. Otherwords print the text. Also generating these reports with these functions would be a step back on the design because of the amount of ode needed to

[PHP] configuration class - skeleton code for first OOP adventure

2003-10-08 Thread anders thoresson
Hi, My first larger project is growing out of control. I've spent some weeks reading OOP tutorials, and feel ready to make my first dive into a new programming style. One of the things that led me this way was the need for user configuration of my project. Therefor, I'll start with a class that

  1   2   >