[PHP] Problem with mktime, need to add 30 days to current date

2003-08-20 Thread James Johnson
Hi, I need to make a date that is 30 days from the current date, and, am having problems with mktime Here's what I've tried: -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem with mktime, need to add 30 days to current date

2003-08-20 Thread James Johnson
Sorry about the previous post. Hi, I need to make a date that is 30 days from the current date, and, am having problems with mktime Here's what I've tried: $endDate=date('Y-m-d',mktime(0,0,0,date('m',time()),30,date('y',time())) ); Return this: 2003-08-30 Is there an easy way to do this?

Re: [PHP] Problem with mktime, need to add 30 days to current date

2003-08-20 Thread Sn!per
print date('Y-m-d',mktime(0,0,0,date('m'),date('d')+30,date('Y'))); Quoting James Johnson [EMAIL PROTECTED]: Sorry about the previous post. Hi, I need to make a date that is 30 days from the current date, and, am having problems with mktime Here's what I've tried:

[PHP] Apache starting error

2003-08-20 Thread Rikunj
Hello all, I am new to this group please do not ignore.. I am running redhat 7.1 Linux Apache/1.3.27 (Unix). The server got restarted due to power malfunction. After it restarted again it is unable to start httpd service display below error. [warn] Loaded DSO libexec/libphp4.so uses plain

[PHP] calling a user defined java class method .....

2003-08-20 Thread toby z
hay guyz i am trying to call, in php , a java class method which happens to be my own as well user defined that is how do i go about this and that also if its possible at all . thanx a million toby Want

Re: [PHP] HELP! I'm Desperate...

2003-08-20 Thread [EMAIL PROTECTED]
Did you put in a 'help wanted' at sourceforge? usually works. Jason Sheets wrote: Why not go to a cybercafe every few days or once a week and check on the project? You can also go to Kinkos or your local library, most of them have internet enabled pcs. Jason Michael A Smith wrote: Hi,

Re: [PHP] Apache starting error

2003-08-20 Thread murugesan
Check this http://www.phpbuilder.com/mail/php-general/262/0811.php -murugesan - Original Message - From: Rikunj [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 11:53 AM Subject: [PHP] Apache starting error Hello all, I am new to this group please do not

[PHP] Help with parse error

2003-08-20 Thread James Johnson
Hi, I'm trying to figure out this error I'm getting in my code: Parse error: parse error in /home/.paco/campuscb/AdPayment.php on line 9 This is the code on line 9: $sDate = date('Y-m-d',time()); Does this look valid? Thanks, James -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: Your application

2003-08-20 Thread majordomo
Please see the attached file for details. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Help with parse error

2003-08-20 Thread Kae Verens
James Johnson wrote: Hi, I'm trying to figure out this error I'm getting in my code: Parse error: parse error in /home/.paco/campuscb/AdPayment.php on line 9 This is the code on line 9: $sDate = date('Y-m-d',time()); if you're looking for the current time, then this is sufficient:

[PHP] Thank you!

2003-08-20 Thread MARMS
See the attached file for details -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Your details

2003-08-20 Thread support
See the attached file for details -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

php-general Digest 20 Aug 2003 08:11:31 -0000 Issue 2247

2003-08-20 Thread php-general-digest-help
php-general Digest 20 Aug 2003 08:11:31 - Issue 2247 Topics (messages 160092 through 160143): in the middle of shift and pop 160092 by: Decapode Azur 160094 by: andu 160095 by: Ralph Guzman 160097 by: Decapode Azur 160105 by: Decapode Azur

Re: [PHP] Help with parse error

2003-08-20 Thread Peter James
Can you give us a couple lines either side of this? This could be due to a missing semicolon on the previous line. -- Peter James Editor-in-Chief, php|architect Magazine [EMAIL PROTECTED] php|architect The Magazine for PHP Professionals http://www.phparch.com - Original Message -

RE: [PHP] Your details

2003-08-20 Thread electroteque
i suggest everyone get spamassasin it also picks up viruses, some look like txt file attatchments though -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 1:54 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject:

Re: [PHP] How to open a save-as dialog and then redirect after donwload?

2003-08-20 Thread Marek Kilimajer
I'm not sure, did you get my post? It is exactly what you want. But instead of downloading first and then redirecting, html page is generated first (like redirect), this page is displayed, and then starts the download. Jean-Christian IMbeault wrote: Jason Sheets wrote: Use PHP's file

Re: [PHP] Problem with mktime, need to add 30 days to current date

2003-08-20 Thread Marek Kilimajer
$endDate=date('Y-m-d',strtotime(+30 day)); James Johnson wrote: Sorry about the previous post. Hi, I need to make a date that is 30 days from the current date, and, am having problems with mktime Here's what I've tried: $endDate=date('Y-m-d',mktime(0,0,0,date('m',time()),30,date('y',time()))

RE: [PHP] Apache starting error

2003-08-20 Thread Rikunj
Hi, Thank you for replying. What would be the appropriate php compile syntax which includes -DEAPI. Thanks, RP.. -Original Message- From: murugesan [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 10:07 AM To: Rikunj; [EMAIL PROTECTED] Subject: Re: [PHP] Apache starting

Re: [PHP] is the list getting virus spammed?

2003-08-20 Thread Marek Kilimajer
And besides, does everyone after posting receives email from [EMAIL PROTECTED] and [EMAIL PROTECTED] Both seem to be mailing list management softwares. If anyone subscribed these addresses to php-general, it is a bad joke and he/she should fry in hell for eternity. Matt Babineau wrote:

Re: [PHP] How to open a save-as dialog and then redirect after donwload?

2003-08-20 Thread [EMAIL PROTECTED]
is this something like what sourceforge has? Marek Kilimajer wrote: I'm not sure, did you get my post? It is exactly what you want. But instead of downloading first and then redirecting, html page is generated first (like redirect), this page is displayed, and then starts the download.

[PHP] Re: Help with parse error

2003-08-20 Thread Baroiller Pierre-Emmanuel
Hi, it's a common error... I think you have an unclosed string before in your script... example : $data='the data; $sDate = date('Y-m-d',time()); this code will produce an error on ligne with $sDate only becose the line with $data is unclosed ( missing the last ' ).. Take a look at your

[PHP] Re: Re: My details

2003-08-20 Thread celula2
Please see the attached file for details. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] uploading binary files, getting corrupt

2003-08-20 Thread Peter Berglund
I've problems uploading binary files via POST. They get corrupt. As told on this pag: http://se2.php.net/features.file-upload in the comments there are some walkarounds for this, but I can't found thoose rows to edit in the apache config. Sol 1: Your binary files may be uploaded incorrectly if

[PHP] Re: Thank you!

2003-08-20 Thread marms
Please see the attached file for details. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] is the list getting virus spammed?

2003-08-20 Thread [EMAIL PROTECTED]
I am getting these majordomo mails as well, thought it was a problem at my end. grrr, people who use the redmond operating system deserve to be plagued by viruses. Marek Kilimajer wrote: And besides, does everyone after posting receives email from [EMAIL PROTECTED] and [EMAIL PROTECTED]

[PHP] Thank you!

2003-08-20 Thread help
Please see the attached file for details. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] dl() unable to open library

2003-08-20 Thread Eike Umlauf
hi all! i have a problem with php 4.0.6 using the dl() command. when i try to load the isis_dll_php-4.0.6.dll library, PHP always tells me Unable to load dynamic library 'C:\Program Files\PHP\4.0.6\extensions\isis_dll_php-4.0.6.dll' The module could not be found yes, i am 100 percent sure that

[PHP] Re: That movie

2003-08-20 Thread ij
Please see the attached file for details. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Warning: dl(): Unable to load dynamic library

2003-08-20 Thread Marek Kilimajer
Are all libraries required by php_API.a in your library path? Ashish Borkar wrote: Hello , I have installed apache and php on AIX. I compiled my extension module and put it in the usr/local/lib/php/extensions/no-debug-non-zts-20020429 directory. In my PHP script i have the code

Re: [PHP] How to open a save-as dialog and then redirect after donwload?

2003-08-20 Thread Marek Kilimajer
Yes, I think sf uses this too. [EMAIL PROTECTED] wrote: is this something like what sourceforge has? Marek Kilimajer wrote: I'm not sure, did you get my post? It is exactly what you want. But instead of downloading first and then redirecting, html page is generated first (like redirect), this

[PHP] error in apache log

2003-08-20 Thread Peter Berglund
I got alot of this error in my apache log, how do I fix it? [warn] Cannot get media type from 'application-x-httpd-php' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] error in apache log

2003-08-20 Thread Marek Kilimajer
Should be application/x-httpd-php. I bet you have this mistake in your apache config files. Peter Berglund wrote: I got alot of this error in my apache log, how do I fix it? [warn] Cannot get media type from 'application-x-httpd-php' -- PHP General Mailing List (http://www.php.net/) To

[PHP] Host Check...?

2003-08-20 Thread Tristan . Pretty
http://www.beamhost.co.uk/hosting.html I'm moving hosts with our site at work... I found these guys and am very impressed. Has anyone had any dealings with them? Know if they are any good? Tris... * The information contained in

RE: [PHP] in the middle of shift and pop

2003-08-20 Thread Ford, Mike [LSS]
-Original Message- From: Decapode Azur [mailto:[EMAIL PROTECTED] Sent: 20 August 2003 00:10 unset($A[2]); No this function does not exactly what I want. unset() makes empty hole with $A[2] = Null I would like to have this result : Array ( [0] = a [1] = b [2]

Re: [PHP] comparing xml files, removing some html tags

2003-08-20 Thread Robert Mena
Thanks to all (actually just one) that answered my question. Unfortunatelly I was hoping a more complete answer since the part I asked was not the main goal... bu t anyway... I'd like to ask then if the viewers could validate my new approach or at least point ways of actually implementing it.

Re: [PHP] error in apache log

2003-08-20 Thread Peter Berglund
How to fix, where's the problem? Marek Kilimajer [EMAIL PROTECTED] skrev i meddelandet news:[EMAIL PROTECTED] Should be application/x-httpd-php. I bet you have this mistake in your apache config files. Peter Berglund wrote: I got alot of this error in my apache log, how do I fix it?

Re: [PHP] error in apache log

2003-08-20 Thread Marek Kilimajer
grep -r application-x-httpd-php /etc/httpd/conf/ now you now the filename, change application-x-httpd-php to application/x-httpd-php and restart apache Peter Berglund wrote: How to fix, where's the problem? Marek Kilimajer [EMAIL PROTECTED] skrev i meddelandet news:[EMAIL PROTECTED] Should be

[PHP] Re: Approved

2003-08-20 Thread kris
Please see the attached file for details. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Thank you!

2003-08-20 Thread ij
See the attached file for details -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

php-general Digest 20 Aug 2003 13:10:58 -0000 Issue 2248

2003-08-20 Thread php-general-digest-help
php-general Digest 20 Aug 2003 13:10:58 - Issue 2248 Topics (messages 160144 through 160170): Re: Help with parse error 160144 by: Peter James 160151 by: Baroiller Pierre-Emmanuel Re: Your details 160145 by: electroteque Re: How to open a save-as dialog and then

[PHP] Re: dl() unable to open library

2003-08-20 Thread Dennis Lee
Make sure all other dlls that your dll depends on are also obtainable by php . -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Your details

2003-08-20 Thread thies
See the attached file for details -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problems send MIME multipart/alternative mail with php

2003-08-20 Thread Lowell Allen
I have had no success sending multipart/alternative emails with php. I have tried everyone's various code snippets with no luck. I test the results with Outlook and Outlook Express. Everytime my boundary tag ends up showing as part of my message and thus the plain text and html portions show

[PHP] show events by week in a HTML table

2003-08-20 Thread BEOI 7308
hi i have a mysql table with events ex : event 1,start time and day,end time and day i'd like to print those events in a nice html table grouped by week ex : ___|monday|tuesday|wednesday| 8:00|event 1| 9:00|event 1| ... i already have a query to select all the events of the week, i just don't

RE: [PHP] test - please ignore

2003-08-20 Thread Brian S. Drexler
On that same note, if this list did NOT except attachments, we wouldn't have to worry as much about Thank You! and Details, etc... -Original Message- From: Wouter van Vliet [mailto:[EMAIL PROTECTED] Sent: Sunday, August 17, 2003 7:47 PM To: PHP General Subject: [PHP] test - please ignore

[PHP] problem with exec

2003-08-20 Thread Gabi Moise
Hi, I am trying to run a .php page using the exec: I have the two pages: load.php: exec(E:\PHP\php.exe F:\WORK\Load\load1.php); And load1.php: $f = fopen(F:\\WORK\\Load\\test.txt,w); fputs($f,hola!); fclose($f); However, it does not work as I expect too, around 30

Re: [PHP] Your details

2003-08-20 Thread Mark
This is the only time I'm glad I use Yahoo mail for this list. Seems either their AV software or their mangling of attachments provided some level of protection. Though I knew they were viri, I wanted to check one out. They came across as text files with nothing but the list signature in them.

[PHP] Re: That movie

2003-08-20 Thread www-html-editor
Please see the attached file for details. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Help with parse error

2003-08-20 Thread James Johnson
Yup, that was it. Missing a semi-colon on line 8. Thanks, James -Original Message- From: Peter James [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 1:17 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Help with parse error Can you give us a couple lines either side of this?

[PHP] Re: Your application

2003-08-20 Thread rasmus
See the attached file for details -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Can't Send Mail in PHP/iis/Windows but no problems with ASP

2003-08-20 Thread Jason Lehman
Mail stop sending about a week ago from all of my php pages but my asp pages still can send mail. Also went thru telnet and sent mail and I have no problems. Does anybody know of anything I should be looking for? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] COM(Excel.Sheet)

2003-08-20 Thread jan
Hi! i'd like to use full power of Excel.Sheet COM object. Does anybody know where can I find full documentation of Excel.Sheet COM object ? thanks Jan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] UPS / USPS shipping algorithm

2003-08-20 Thread Jason Stechschulte
I have to be able to calculate shipping charges based on the product(s) ordered. I'm able to communicate with UPS and USPS, parse the XML and all of that. The problem I'm running into is trying to calculate a box size. Has anyone here come up with a good solution? It is no problem at all to

[PHP] Question on syntax...

2003-08-20 Thread Jonathan Villa
I've seen this a few times in some code examples... XXX::XXX What do the 2 colons signify? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] COM(Excel.Sheet)

2003-08-20 Thread David Otton
On 20 Aug 2003 15:11:26 +0200, you wrote: i'd like to use full power of Excel.Sheet COM object. Does anybody know where can I find full documentation of Excel.Sheet COM object ? Uh... MSDN?

[PHP] CHAT about PHP

2003-08-20 Thread Damian Brown
www.phpexpert.org Programming Help and General Programming Topics -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Your application

2003-08-20 Thread Curt Zirzow
* Thus wrote [EMAIL PROTECTED] ([EMAIL PROTECTED]): hmm.. someone has him in their address book that is infected :) lol Curt -- I used to think I was indecisive, but now I'm not so sure. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: CHAT about PHP

2003-08-20 Thread Damian Brown
should be www.phpexpert.org/chat/ Damian Brown [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] www.phpexpert.org Programming Help and General Programming Topics -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] CHAT about PHP

2003-08-20 Thread Curt Zirzow
* Thus wrote Damian Brown ([EMAIL PROTECTED]): www.phpexpert.org Programming Help and General Programming Topics Is this a joke? Curt -- I used to think I was indecisive, but now I'm not so sure. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: Question on syntax...

2003-08-20 Thread Ney André de Mello Zunino
Jonathan Villa wrote: I've seen this a few times in some code examples... XXX::XXX What do the 2 colons signify? http://www.php.net/manual/en/keyword.paamayim-nekudotayim.php -- Ney André de Mello Zunino -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Question on syntax...

2003-08-20 Thread David Otton
On 20 Aug 2003 09:57:20 -0500, you wrote: I've seen this a few times in some code examples... XXX::XXX What do the 2 colons signify? Static method of an object. Calling a method of a class without first instantiating an instance of the class. /* Class A has method B */ class

[PHP] OT-Re: worm on th list

2003-08-20 Thread andu
Is this worm/virus windows specific? -- Regards, Andu Novac -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] CHAT about PHP

2003-08-20 Thread Damian Brown
no Curt it is quite serious Curt Zirzow [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] * Thus wrote Damian Brown ([EMAIL PROTECTED]): www.phpexpert.org Programming Help and General Programming Topics Is this a joke? Curt -- I used to think I was indecisive, but now I'm

[PHP] This is getting rediculus

2003-08-20 Thread Curt Zirzow
Some joker is somehow making all are posts being sent to request subscriptions, help-list, unsubscriptions.. etc. I'm not sure how we can stop this nonsense. Part of the problem is there seems to be nobody in control of this list. I have tried contacting several people about this but I haven't

Re: [PHP] CHAT about PHP

2003-08-20 Thread Robert Cummings
On Wed, 2003-08-20 at 11:11, Curt Zirzow wrote: * Thus wrote Damian Brown ([EMAIL PROTECTED]): www.phpexpert.org Programming Help and General Programming Topics Is this a joke? Looks like an email harvester. Why does it need an email address? Cheers, Rob. --

Re: [PHP] CHAT about PHP

2003-08-20 Thread David Otton
On 20 Aug 2003 11:31:02 -0400, you wrote: On Wed, 2003-08-20 at 11:11, Curt Zirzow wrote: * Thus wrote Damian Brown ([EMAIL PROTECTED]): www.phpexpert.org Programming Help and General Programming Topics Is this a joke? Looks like an email harvester. Why does it need an email address?

Re: [PHP] This is getting rediculus

2003-08-20 Thread Marek Kilimajer
I was thinking about it, but how did he manage to send the confirmation email. Maybe the list admin did it ;) Curt Zirzow wrote: Some joker is somehow making all are posts being sent to request subscriptions, help-list, unsubscriptions.. etc. I'm not sure how we can stop this nonsense. Part of

RE: [PHP] This is getting rediculus

2003-08-20 Thread Brian S. Drexler
I don't know, but if we can find out who it is and saywhere he livesI'll be glad to remedy the situation. :-) -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 11:57 AM To: Curt Zirzow Cc: [EMAIL PROTECTED] Subject: Re: [PHP] This

Re: [PHP] This is getting rediculus

2003-08-20 Thread Ernest E Vogelsinger
At 17:57 20.08.2003, Marek Kilimajer said: [snip] I was thinking about it, but how did he manage to send the confirmation email. Maybe the list admin did it ;) [snip] When I changed my email address I unsubscribed

Re: [PHP] CHAT about PHP

2003-08-20 Thread P.Agenbag
Sites like these will drive me to ASP... On Wed, 2003-08-20 at 17:39, David Otton wrote: On 20 Aug 2003 11:31:02 -0400, you wrote: On Wed, 2003-08-20 at 11:11, Curt Zirzow wrote: * Thus wrote Damian Brown ([EMAIL PROTECTED]): www.phpexpert.org Programming Help and General

[PHP] back button and forms

2003-08-20 Thread Tim Winters
Hello, I have a series of forms set over a few pages. The entries are stored in session vars and the whole shebang is written to mySQL via PHP at the end of the series of forms. When the user hits the back button an error message comes up with the following Warning: Page has Expired The

[PHP] Re: CHAT about PHP

2003-08-20 Thread DvDmanDT
Things like this should block the sender... How many times has he just posted a link to that site? -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] Damian Brown [EMAIL PROTECTED] skrev i meddelandet news:[EMAIL PROTECTED] www.phpexpert.org Programming Help and General Programming

Re: [PHP] This is getting rediculus

2003-08-20 Thread Curt Zirzow
* Thus wrote Marek Kilimajer ([EMAIL PROTECTED]): I was thinking about it, but how did he manage to send the confirmation email. Maybe the list admin did it ;) An easy solution would be to subscribe with an email address then have that email address forward to the other mailing list. [EMAIL

Re: [PHP] CHAT about PHP

2003-08-20 Thread Ernest E Vogelsinger
You can program a site as complicated as this in ASP as well *g* At 18:19 20.08.2003, P.Agenbag said: [snip] Sites like these will drive me to ASP... On Wed, 2003-08-20 at 17:39, David Otton wrote: On 20 Aug 2003 11:31:02 -0400, you wrote: On Wed,

Re: [PHP] UPS / USPS shipping algorithm

2003-08-20 Thread Bryan Koschmann - GKT
Just out of curiosity, how are you doing this? I've wanted something like this as well as tracking information. I've only looked around their sites for something but didn't find it. Fedex would be even better if anyone has any ideas on that :) Thanks, Bryan On Wed, 20 Aug 2003, Jason

Re: [PHP] back button and forms

2003-08-20 Thread Chris Sherwood
session.cache_expire is what your looking for I believe http://www.php.net/manual/en/ref.session.php - Original Message - From: Tim Winters [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 9:26 AM Subject: [PHP] back button and forms Hello, I have a

Re: [PHP] back button and forms

2003-08-20 Thread Chris Sherwood
sorry its actually http://www.php.net/manual/en/function.session-cache-limiter.php - Original Message - From: Tim Winters [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 9:26 AM Subject: [PHP] back button and forms Hello, I have a series of forms set

Re: [PHP] calling a user defined java class method .....

2003-08-20 Thread Dan Anderson
i am trying to call, in php , a java class method which happens to be my own as well user defined that is how do i go about this and that also if its possible at all . Well you could use exec() to execute a shell command. Of course, that is /if/ safemode isn't enabled.

Re: [PHP] This is getting rediculus

2003-08-20 Thread Dan Anderson
Just throw up a filter deleting messages and threads from anybody you don't like. This can include obnoxious users, or mailer daemons (gets rid of all the worm garbage). -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] back button and forms

2003-08-20 Thread Scott Piccotti
On Wednesday, August 20, 2003, at 12:26 PM, Tim Winters wrote: I have a series of forms set over a few pages. The entries are stored in session vars and the whole shebang is written to mySQL via PHP at the end of the series of forms. When the user hits the back button an error message comes

Re: [PHP] This is getting rediculus

2003-08-20 Thread Curt Zirzow
* Thus wrote Dan Anderson ([EMAIL PROTECTED]): Just throw up a filter deleting messages and threads from anybody you don't like. This can include obnoxious users, or mailer daemons (gets rid of all the worm garbage). This is fine an dandy but this problem needs to be resolved. not ignored!!!

Re: [PHP] This is getting rediculus

2003-08-20 Thread Dan Anderson
This is fine an dandy but this problem needs to be resolved. not ignored!!! sarcasm What a brilliant idea! I'll tell you what, you start in the Eastern United States and tell everyone to use something besides Windows and I'll start in the Western United states. We'll meet up somewhere in the

Re: [PHP] back button and forms

2003-08-20 Thread [EMAIL PROTECTED]
Hi, One of the problems Tim, is that POST is not usualy cached on the client side. Even proxies seem to respect that rule and do not cache the page if the method was a POST. If you are sending non critical data and the volume is small you might want to consider a switch from POST to GET for

[PHP] Re: Thank you!

2003-08-20 Thread travel
See the attached file for details -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] back button and forms

2003-08-20 Thread Tim Winters
Hmmm, So this isn't a unique problem then? Thanks everyone for the responses Tim Winters Creative Development Manager Sampling Technologies Incorporated 1600 Bedford Highway, Suite 212 Bedford, Nova Scotia B4A 1E8 www.samplingtechnologies.com [EMAIL PROTECTED] [EMAIL PROTECTED] Office: 902 450

[PHP] Re: UPS / USPS shipping algorithm

2003-08-20 Thread Manuel Lemos
Hello, On 08/20/2003 11:32 AM, Jason Stechschulte wrote: I have to be able to calculate shipping charges based on the product(s) ordered. I'm able to communicate with UPS and USPS, parse the XML and all of that. The problem I'm running into is trying to calculate a box size. Has anyone here

RE: [PHP] back button and forms

2003-08-20 Thread Chris W. Parker
Tim Winters mailto:[EMAIL PROTECTED] on Wednesday, August 20, 2003 10:37 AM said: So this isn't a unique problem then? No not at all. It's by design (afaik). Chris. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] This is getting rediculus

2003-08-20 Thread Curt Zirzow
* Thus wrote Dan Anderson ([EMAIL PROTECTED]): This is fine an dandy but this problem needs to be resolved. not ignored!!! So long as we have people with this lists address in a Windows address book while there's a major worm raging there are going to be emails of this sort. I subscribe

[PHP] Off the subject I need help...

2003-08-20 Thread Payne
Hi, I need help in finding a Microsoft SQL mailing list. I have a project that is becoming a nightmare because I have to port a SQL2000 to MySQL, then take site that is written in asp and re-write them in php. So if anyone is on a SQL2000 or MS SQL mailing can you please send a link. Thanks.

[PHP] Re: Off the subject I need help...

2003-08-20 Thread DvDmanDT
Consider using news servers...news://msnews.microsoft.com... There are lots of groups there about sqlserver which I guess is what you're after, or are sqlserver and mssql different things? Can't you like select * where 1 to some file and then import to MySQL? -- // DvDmanDT MSN: [EMAIL

RE: [PHP] Off the subject I need help...

2003-08-20 Thread Chris W. Parker
Payne mailto:[EMAIL PROTECTED] on Wednesday, August 20, 2003 10:53 AM said: I need help in finding a Microsoft SQL mailing list. I have a project that is becoming a nightmare because I have to port a SQL2000 to MySQL, then take site that is written in asp and re-write them in php. So if

RE: [PHP] This is getting ridiculous

2003-08-20 Thread Brian S. Drexler
But if we find a way to filter the list, say, for patterns just like virus checking programs do. That would probably solve a lot of problems. But again, nobody is really in control of the list so that is difficult...besides, hundreds of people use this list. I don't want to go through and block

[PHP] Re: back button and forms

2003-08-20 Thread rush
Tim Winters [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Is there any way to avoid this from happening? instead of POST, you could use GET as form method. More nicely, but also much more work, is to use N layers on one page for each group of inputs and to switch layers by

[PHP] Ignore, Testing.

2003-08-20 Thread Michael McDowell
testing post. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] custom syntax highlighting in html-kit

2003-08-20 Thread Chris W. Parker
Hello, I'd REALLY REALLY like to be able to modify the syntax highlighting in html-kit. Is this possible? Right now in PHP if you have a line like: echo this is the text i want to echo.; Everything between the two 's will be gray. I don't necessarily want to change that color (that parts easy)

Re: [PHP] Re: back button and forms

2003-08-20 Thread Robert Cummings
GET method has restrictions -- you are only guaranteed proper handling of the first 1024 (or some such limit) after which the behaviour is considered undefined. Thus using the GET method is generally only feasible for small forms. Cheers, Rob. On Wed, 2003-08-20 at 14:08, rush wrote: Tim

[PHP] Archive of this list on ListSearch.com

2003-08-20 Thread Bill Doerrfeld
For those who might be interested in a more powerful searchable archive of this list, feel free to check out the archive now available at http://www.listsearch.com/phplist.lasso. The archive supports all features provided via ListSearch.com service including searching across multiple fields,

RE: [PHP] This is getting ridiculous

2003-08-20 Thread Dan Anderson
Blocking the users is not solving the issue... Don't just block random users. Create a rule something like: if (sender contains POSTMASTER or MAILER or DAEMON) AND (cc, to, or bcc contains [EMAIL PROTECTED]) DELETE Doing things like this, adding in filters like if subject contains VIRUS and

RE: [PHP] This is getting ridiculous

2003-08-20 Thread Chris W. Parker
Dan Anderson mailto:[EMAIL PROTECTED] on Wednesday, August 20, 2003 12:37 PM said: Blocking the users is not solving the issue... Don't just block random users. Create a rule something like: First of all he didn't mean any random user as if someone would just willy-nilly block

Re: [PHP] custom syntax highlighting in html-kit

2003-08-20 Thread Aaron Gould
This is not possible... yet. I would like this feature too, but it has been addressed a few times on the newsgroups at chami.com. You can check the newsgroups out at http://www.chami.com/html-kit/newsgroups/. As far as I know, this feature is on Chami's long-term to-do list. -- Aaron Gould

  1   2   >