Re: [PHP] Regular expression question

2003-08-04 Thread Jim Lucas
well, first off '>' should not be allowed as a value of an attr="" pair anyways. You should convert it to > or < this will solve that problem. Jim Lucas - Original Message - From: "Dan Phiffer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 04, 2003 4:03 PM Subject: [PH

[PHP] CURL

2003-08-04 Thread John Ryan
theres this site i want to use to execute a command by visting a url. like http://www.site.com/stuff.php?id=1234&message=hello_world when i visit this in the browser when im logged into www.site.com, it works as im logged in with cookies or sessions or whatever. but obviosuly i cant be loged in fr

Re: [PHP] Regular expression question

2003-08-04 Thread Dan Phiffer
Actually, this is for a general purpose templating that might use < and > or [ and ] (i.e. [element attribute="value"]), but I suppose the same character entity requirement could be applied to other "boundary characters." Somehow it didn't occur to me. Thanks for the response, -Dan "Jim Lucas" <[

Re: Re: [PHP] Addin a column of numbers not using MySQL

2003-08-04 Thread Jim Lucas
Give an example db layout and/or array layout that you plan on using. Would I be correct in assuming that the array would look something like this? $values['val_1'] = 100.00; $values['val_2'] = 150.00; $values['val_3'] = 200.00; $values['val_4'] = 250.00; $values['val_5'] = 100.00; if this is co

[PHP] Re: CURL

2003-08-04 Thread Igor Konforti
yeah, there is way to do it! http://www.php.net/manual/en/function.curl-setopt.php On Tue, 5 Aug 2003 01:04:42 +0100, John Ryan <[EMAIL PROTECTED]> wrote: theres this site i want to use to execute a command by visting a url. like http://www.site.com/stuff.php?id=1234&message=hello_world when i v

Re: Re: [PHP] Addin a column of numbers not using MySQL

2003-08-04 Thread Curt Zirzow
* Thus wrote Ben C. ([EMAIL PROTECTED]): > I tried doing as you said and it returned 0. Is there another way to add up the > column? Please restart this discussion in a new thread, I have no clue what you are trying to do anymore. Give an brief example of your query and your php code and what y

Re: [PHP] Regular Expression

2003-08-04 Thread Curt Zirzow
* Thus wrote Ralph Guzman ([EMAIL PROTECTED]): > Been working on this one for a while but can't get it working properly. > I need a regular expression to match if address is > > 1. PO Box > 2. P.O. Box > 3. P.O.Box > > I'm using /i to make this case insensitive. /p\.?o\.?\s*box/i > > I got i

Re: [PHP] Re: CURL

2003-08-04 Thread Jason Sheets
In most cases you can make Curl submit the login form itself, in which case Curl would become logged in. You can use Curl to get both GET and POST requests, the comments in the PHP manual are pretty decent. Jason John Ryan wrote: i was more asking for the actual curl commands to do so, i suppo

[PHP] PHP Fusebox

2003-08-04 Thread Ralph Guzman
I am trying to standardize my development process and have been looking at the different frameworks out there. One of the philosophies I like is that of Fusebox, although originally developed for ColdFusion it is now available for PHP: http://bombusbee.com/ Anybody have any experience working wi

Re: [PHP] Extracting Compressed Files

2003-08-04 Thread Curt Zirzow
* Thus wrote Matt Palermo ([EMAIL PROTECTED]): > Does anyone know of easy ways to be able to extract all > files/folders/subfolders from different types of compressed files (.zip, > .tar.gz, etc.)? If anyone could help me out with this, I would really > appreciate it. man unzip man tar man if

[PHP] checking how many records are returned?

2003-08-04 Thread Amanda McComb
Is there a way to check how many records are returned from a query to the database? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

<    1   2