[PHP] Merging Multi-Dimensional Arrays Into Another Array

2003-08-20 Thread Nilaab Y.
Ok, here goes... I have an multi-dimensional array extracted from the database ($units) that is listed at the bottom of this e-mail. What I want to do is take this multi-dimensional array $units and maybe merge or extract it to a different array called $options. I want to group similar units into

[PHP] Re: Re: My details

2003-08-20 Thread chregu
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] unexpected date results

2003-08-20 Thread Martin Towell
(http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php __ Information from NOD32 1.490 (20030820) __ This message was checked by NOD32 for Exchange e-mail monitor. http://www.nod32.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] unexpected date results

2003-08-20 Thread Cody Phanekham
Ive got a pretty simple script that runs at 5 past midnight. It grabs the local date/time and processes data based on the date/time. The problem is the date/time returned by the date() function is incorrect. here is a sample script (not actual script running on server): test.php timestamp = $t";

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

2003-08-20 Thread Robert Cummings
On Wed, 2003-08-20 at 23:38, Jaap van Ganswijk wrote: > > Finding a single element in a doubly linked list can > be sped up using a hash-code table, but it also > makes things like renumbering numerically indexed > entries a lot harder (I think, I never used a > combination of these things.) Doub

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

2003-08-20 Thread [EMAIL PROTECTED]
Hi, Discussion of xerces will take us out of the mandate of this list. Please download xerces from http://xml.apache.org along with the documents and you will see plenty of sample codes. You might also want to look at IBM's developer site (IBM created the bulk of xerces) all the best raditha Ro

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

2003-08-20 Thread Jaap van Ganswijk
At 2003-08-21 00:54 +0200, Decapode Azur wrote: >> Or will PHP realize "OK I need to change the numbers indexing the other >> elements"? > >** as PHP is a high level language I can write very quickly and very easily >scripts to make manipulations on my 3D meshes, but the problem is that it >often

[PHP] Re: rich text editing

2003-08-20 Thread Tan Ai Leen
You can also use dhtml/js to code a html editor. But it will work in IE only. Search for online html editor. See this link:http://msdn.microsoft.com/library/default.asp If you are developing for a organisation, the type of browser used is easy to predict. If you are developing for the general publi

[PHP] Re: problem writing \t and } tp text files

2003-08-20 Thread Tan Ai Leen
I think it is because I used the wrong mode for editing the file. x+ merely write over existing data in a file, does not truncate. The } could be residue from previous writes. Using w+ solves the problem. ;> Regards, Tan Ai Leen -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Thank you!

2003-08-20 Thread listserv
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: rich text editing

2003-08-20 Thread Jon Drukman
Redmond Militante wrote: $essay2=nl2br($essay2); $essay2 = str_replace( "", "\par", $essay2 ); $output = str_replace( "<>", $essay2, $output ); to preserve line breaks when generating rtf documents from the text blob essays we have in the mysql db. this is working fine. i have recently had some r

[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] Re: problem writing \t and } tp text files

2003-08-20 Thread DvDmanDT
Can you post a short code snippet please? Miht have to do with {$arr[0]} style syntax... Try \t\t\t\t\t\} instead.. although, I don't really know if this matters, just a though that came to my head... -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] "Tan Ai Leen" <[EMAIL PROTECTED]>

[PHP] problem writing \t and } tp text files

2003-08-20 Thread Tan Ai Leen
Hi, Did anyone encounter problem writing \n\t\t\t\t follow by } into text files? I tried doing this. I am writing a class generator. That's why there are so many \t. When I tried \n\t\t\t\t}, the } will be missing from the textfile. \t}can't be an escape sequence rite? What's wrong? I am using php4

[PHP] PHP page caching issue

2003-08-20 Thread Tom Tsongas
Hi folks. I have an interesting problem with regards to some PHP pages of mine. Basically, I have a form page where the user is able to use list menus, pulldowns, and textfields to enter certain data as part of a mechanism for running a query against our database. Once the user runs the query,

Re: [PHP] String parsing help

2003-08-20 Thread Steve Edberg
Or (untested): $String = 'NORTH LITTLE ROCK AR 72118-5227'; $Bits = split(strrev($String), '[[:space:]]+', 3); $Zip = strrev($Bits[0]); $State = strrev($Bits[1]); $City = strrev($Bits[2]); ...could also use preg_split() - steve At 4:44 PM -0400 8/20/03, "CPT John W. Holmes" <[EMAIL PROTECTED

[PHP] PROGRAMMERS Wanted

2003-08-20 Thread Damian Brown
Hi, i would just like to clarify a few points i will be taking on programmers from the 12 Dec 2003 and paying a rate of $30 per hour or £20 per hour which i think is a fair rate, as a programmer in my hometown of Blackburn UK is charging this rate if you would like to chat about the project that

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

2003-08-20 Thread Decapode Azur
> If you unset an array that isn't associative, will that mean there will > be a gap in the numbers? Yes the items are grabed by their index. I'm using those arrays to manipulate 3D geometric shapes, (either vrml/x3d, OpenGL, POV and other ones**) so cartesian coordinates are first referenced in a

RE: [PHP] functions/methods and what they should return

2003-08-20 Thread Dan Anderson
While I'm still on my soapbox... There are a number of great books out there on object oriented programming. Basically the idea is to take a top down approach -- decide what components makes up what you want to do, what components make up those components, and so on until you can program

RE: [PHP] functions/methods and what they should return

2003-08-20 Thread Chris W. Parker
Dan and Ray, Thanks for your help. This helps clear some things up for me! Chris. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] functions/methods and what they should return

2003-08-20 Thread Ray Hunter
> function GetAttributes($id) > { > // query db > > // get records > > // return record array > } > > function BuildAttributes($id) > { > $attributes = GetAttributes($id); > > // format $attributes > > // return HTML string > } That is a good way...you ha

RE: [PHP] functions/methods and what they should return

2003-08-20 Thread Dan Anderson
> Hmm.. Although this sounds like a good idea at first, it seems like it > would get pretty complicated really fast. Am I missing something? Well the idea is that on very large programs you create a number of different components that can be used and changed independently. To give you an

Re: [PHP] This is getting ridiculous

2003-08-20 Thread DvDmanDT
Yes, but many ppl (hmm.. That means me I guess) are also VERY annoyed by those mails the thread is about.. I wanna add that I'm completely with Curt on this subject... Someone started this list, and that someone must be admin, right? Let's unsubscribe the ppl who are causing it... If we don't know

RE: [PHP] functions/methods and what they should return

2003-08-20 Thread Chris W. Parker
Dan Anderson on Wednesday, August 20, 2003 3:04 PM said: > You want to break off things into as many functions and components as > possible. Hmm.. Ok. So right now I've got this (psuedo code): function displayAttributes($id) { // query db // store r

Re: [PHP] functions/methods and what they should return

2003-08-20 Thread Ray Hunter
> Each product that is in the database can have at least one attribute to > it (i.e. color, size, etc.). Right now I've got a method in my Products > class called ShowAttributes($id). This method, based on the ID passed to > it, will query the db and ultimately return a string that makes up the >

Re: [PHP] functions/methods and what they should return

2003-08-20 Thread Dan Anderson
You want to break off things into as many functions and components as possible. The idea is that if you want to change the way tables are displayed with the data, for instance, you can't break the way data is queried. I usually have a bunch of different files like "inc.function.something.php" and

[PHP] functions/methods and what they should return

2003-08-20 Thread Chris W. Parker
Hi people. I'm working on a large application right now (complete ecom store) and I'd like to get some feedback on something. Each product that is in the database can have at least one attribute to it (i.e. color, size, etc.). Right now I've got a method in my Products class called ShowAttributes

[PHP] mime_content_type error

2003-08-20 Thread Ermelir
Hi list, I've a problem with the mime_content_type function. each time I use them, my script bug but in my php.ini the extension php_mime_magic.dll is load; and function_exists return true on the mime_content_type I have any details about the error, but my script exit each time. Have you any idea

Re: [PHP] This is getting ridiculous

2003-08-20 Thread Ray Hunter
Can we move this off list...many of us dont have time to mill through this...we are here to help. Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] deprecated function list?

2003-08-20 Thread Chris
How can I find a list of PHP functions that are deprecated? Also, how can I print to the browser the Notice message that would indicate that a function is depricated? Like: Notice: mysql(): This function is deprecated; use mysql_query() instead Thanks for input Chris -- PHP General Mailing List

Re: [PHP] This is getting ridiculous

2003-08-20 Thread Curt Zirzow
* Thus wrote Dan Anderson ([EMAIL PROTECTED]): > > 1. I can see that you have issues with anger. Have you thought about > > seeing a therapist? > > If you see me as angry you're reading wyyy too much into these > e-mails. I'm trying to educate... No, your not educating, you're giving b

Re: [PHP] This is getting ridiculous

2003-08-20 Thread andu
On Wed, 20 Aug 2003 20:18:54 + Curt Zirzow <[EMAIL PROTECTED]> wrote: > > Eventually there will be 10 returned emails for each posts and that > will mean that that there will be around 2000 needless emails being > sent around, a day. This is complete nonsense and must be fixed. The issue seem

RE: [PHP] This is getting ridiculous

2003-08-20 Thread Dan Anderson
> 1. I can see that you have issues with anger. Have you thought about > seeing a therapist? If you see me as angry you're reading wyyy too much into these e-mails. I'm trying to educate... > 2. So because other lists aren't doing it, this one shouldn't also? I > wonder, would you ju

Re: [PHP] String parsing help

2003-08-20 Thread CPT John W. Holmes
From: "Jonatan Pugliese." <[EMAIL PROTECTED]> > From: "Matt Matijevich" <[EMAIL PROTECTED]> > > I have have a string that I need to split into 3 different variables: > > City,State, and Zip. Here is a couple examples of the strings I need to > > parse: > > > > ANCHORAGE AK 99507-6420 > > JUNEAU

Re: [PHP] String parsing help

2003-08-20 Thread Rafael Zanetti
$vector=split( " ", $string, ); $City=$vector[0]; $State=$vector[1]; $Zip=$vector[2]: This will not work because there cases where the city name have more than 1 word you must get from end-to-begining i can't think about it now, but it's a tip anyway > $vector=split( " ", $string, ); > > > $Ci

RE: [PHP] Re: rich text editing

2003-08-20 Thread Chris W. Parker
DvDmanDT on Wednesday, August 20, 2003 1:32 PM said: > Look into activeX stuff... That's how they do it... Umm.. that's how they do what? Oh I see what happened... you forgot to include the text you were replying to in your email so that anyone reading your respons

[PHP] Re: rich text editing

2003-08-20 Thread DvDmanDT
Look into activeX stuff... That's how they do it... -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] "Redmond Militante" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub

Re: [PHP] String parsing help

2003-08-20 Thread Curt Zirzow
* Thus wrote Matt Matijevich ([EMAIL PROTECTED]): > I have have a string that I need to split into 3 different variables: > City,State, and Zip. Here is a couple examples of the strings I need to > parse: > > ANCHORAGE AK 99507-6420 > JUNEAU AK 99801 > NORTH LITTLE ROCK AR 72118-5227 > > D

RE: [PHP] This is getting ridiculous

2003-08-20 Thread Chris W. Parker
Dan Anderson on Wednesday, August 20, 2003 1:06 PM said: > Sure, I absolutely agree with you. But there are a lot of lists /not/ > doing anything about it. So whatever. Don't spend a half hour > bitching about the spam -- spend 5 minutes blocking it and be done >

Re: [PHP] String parsing help

2003-08-20 Thread Jonatan Pugliese.
$vector=split( " ", $string, ); $City=$vector[0]; $State=$vector[1]; $Zip=$vector[2]: - Original Message - From: "Matt Matijevich" <[EMAIL PROTECTED]> To: "<" <[EMAIL PROTECTED]> Sent: Wednesday, August 20, 2003 5:11 PM Subject: [PHP] String parsing help > I have have a string that I

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

2003-08-20 Thread Richard Baskett
> 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. Here here! Ill second that! "I will persist until I succeed. Always will I take another step. If that is of no avail I will tak

Re: [PHP] This is getting ridiculous

2003-08-20 Thread Curt Zirzow
* Thus wrote Dan Anderson ([EMAIL PROTECTED]): > > Blocking the users is not solving the issue... > > Don't just block random users. Create a rule something like: who said anything about random users. > > if (sender contains POSTMASTER or MAILER or DAEMON) > AND (cc, to, or bcc contains [EMA

[PHP] String parsing help

2003-08-20 Thread Matt Matijevich
I have have a string that I need to split into 3 different variables: City,State, and Zip. Here is a couple examples of the strings I need to parse: ANCHORAGE AK 99507-6420 JUNEAU AK 99801 NORTH LITTLE ROCK AR 72118-5227 Does anyone have an idea how I could slit this into the appropriate v

[PHP] rich text editing

2003-08-20 Thread Redmond Militante
hello all i have a text box as part of a form. the form submits to a mysql db. the text box holds a user's essay question, which is then stored in the mysql db as data type 'text'. i use when echoing the essay in html, and code such as $essay2=nl2br($essay2); $essay2 = str_replace( "", "

RE: [PHP] This is getting ridiculous

2003-08-20 Thread Dan Anderson
> Second, it would be better if the list owners would do something about > it. Sure, I absolutely agree with you. But there are a lot of lists /not/ doing anything about it. So whatever. Don't spend a half hour bitching about the spam -- spend 5 minutes blocking it and be done with it. -Dan

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 [EMA

RE: [PHP] This is getting ridiculous

2003-08-20 Thread Chris W. Parker
Dan Anderson 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 so

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" a

[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 . The archive supports all features provided via ListSearch.com service including searching across multiple fields,

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 Wint

[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 eas

[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] 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 javas

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 "blo

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

2003-08-20 Thread Chris W. Parker
Payne 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

[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 PROTECTED]

[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. Chu

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 sub

RE: [PHP] back button and forms

2003-08-20 Thread Chris W. Parker
Tim Winters 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

[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 com

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: 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 [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 so

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!!! 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 Great

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] 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 u

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] 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] 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

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 hav

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 St

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: >> >> >O

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

[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 Progr

[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 page

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

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] 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 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] 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

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. -- .-

[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 h

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

[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] 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 */ cl

[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: http://www.php.net

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: http://www.php.n

[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] 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] 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] 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? http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odeopg/html/deovrworkingwithofficeappli

[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

[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 get

[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] 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: http://

[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

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? Th

[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] 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] 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, arou

  1   2   >