[PHP] Havn't been on the list in a while

2006-12-11 Thread Jim Lucas
Seems like this list has slowed down alot. Anybody else notice this, or am I just missing something? jl -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHPDIG

2006-12-11 Thread Jiffy Slides Leonard Burton
Thanks for the Google Tip. That is what I will use. Much easier as I don't think we will have 5,000 sites. Leonard On 12/11/06, Saqib Ali <[EMAIL PROTECTED]> wrote: r u planning to use it for intranet site or a internet site? if for a internet site: try http://www.google.com/coop instead of

Re: [PHP] flash/php file uploader

2006-12-11 Thread Chris
Brad Fuller wrote: -Original Message- Hi Sorry if this is considered off topic, but do you know of any code examples/libs with a flash/php file uploader with progress bar? I've googled for a while but the scripts I find won't work. I'm using Firefox 2 and Flash player 9 on an intel Mac

Re: [PHP] PHPDIG

2006-12-11 Thread Saqib Ali
r u planning to use it for intranet site or a internet site? if for a internet site: try http://www.google.com/coop instead of phpDig or HTDig saqib http://www.full-disk-encryption.net On 12/11/06, Leonard Burton <[EMAIL PROTECTED]> wrote: HI Guys and Gals, Has anyone used PHP Dig lately? Is

[PHP] PHPDIG

2006-12-11 Thread Leonard Burton
HI Guys and Gals, Has anyone used PHP Dig lately? Is the new version any better than it used to be? -- Leonard Burton, N9URK [EMAIL PROTECTED] "The prolonged evacuation would have dramatically affected the survivability of the occupants." -- PHP General Mailing List (http://www.php.net/) To u

Re: [PHP] file uploads Q?

2006-12-11 Thread Chris
Jim Lucas wrote: Jochem Maas wrote: Richard Lynch wrote: On Sat, December 9, 2006 12:18 pm, William Stokes wrote: Is it possible to allow user pick several images and upload them all at once? (I need to pass the images to a function for the resize). Or do I need to give several browse b

RE: [PHP] flash/php file uploader

2006-12-11 Thread Brad Fuller
> -Original Message- > > Hi > > Sorry if this is considered off topic, but do you know of any code > examples/libs with a flash/php file uploader with progress bar? > > I've googled for a while but the scripts I find won't work. I'm using > Firefox 2 and Flash player 9 on an intel Mac if

[PHP] flash/php file uploader

2006-12-11 Thread Emil Edeholt
Hi Sorry if this is considered off topic, but do you know of any code examples/libs with a flash/php file uploader with progress bar? I've googled for a while but the scripts I find won't work. I'm using Firefox 2 and Flash player 9 on an intel Mac if that tells you anything? Or should I as

Re: [PHP] file uploads Q?

2006-12-11 Thread Jim Lucas
Jochem Maas wrote: Richard Lynch wrote: On Sat, December 9, 2006 12:18 pm, William Stokes wrote: Is it possible to allow user pick several images and upload them all at once? (I need to pass the images to a function for the resize). Or do I need to give several browse buttons to allow

Re: [PHP] Re: news.php.net times out - unreachable for days

2006-12-11 Thread Chuck Anderson
Lester Caine wrote: Chuck Anderson wrote: In the time it takes to write a message, I lose my connection and often cannot even connect to send it. I'm hurrying this time, so I hope it works. ( not that time . timed out . I'll try Sending again) When I was forced to use th

Re: [PHP] Re: news.php.net times out - unreachable for days

2006-12-11 Thread Chuck Anderson
Lester Caine wrote: Chuck Anderson wrote: In the time it takes to write a message, I lose my connection and often cannot even connect to send it. I'm hurrying this time, so I hope it works. ( not that time . timed out . I'll try Sending again) When I was forced to use th

Re: [PHP] file uploads Q?

2006-12-11 Thread Børge Holen
On Monday 11 December 2006 20:48, Jochem Maas wrote: > Richard Lynch wrote: > > On Sat, December 9, 2006 12:18 pm, William Stokes wrote: > >> Is it possible to allow user pick several images and upload them all > >> at > >> once? (I need to pass the images to a function for the resize). Or do > >>

Re: [PHP] file uploads Q?

2006-12-11 Thread Jochem Maas
Richard Lynch wrote: > On Sat, December 9, 2006 12:18 pm, William Stokes wrote: >> Is it possible to allow user pick several images and upload them all >> at >> once? (I need to pass the images to a function for the resize). Or do >> I need >> to give several browse buttons to allow multiple file

RE: [PHP] Need help with RegEx

2006-12-11 Thread Michael
At 08:29 AM 12/11/2006 , Brad Fuller wrote: > >The example provided didn't work for me. It gave me the same string without >anything modified. You are absolutely correct, this is what I get for not testing it explicitly :( My most sincere apologies to the OP and the list, there is an error in

[PHP] preg_match to preg_replace

2006-12-11 Thread Peter Lauri
Hi guys, I have a sample string "[hp-ex][log]peter[hall o]" that I need to process. I need to remove the [] and separate the sections with a space. If there are more then one [] part the first part should be bold (add around it). I have a solution that is working very well, but am thinking that I

RE: [PHP] Need help with RegEx

2006-12-11 Thread Brad Fuller
I got it. Hello, World!"; preg_match("#(.*?)#s", $input, $matches); echo $matches[1]; ?> > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Monday, December 11, 2006 10:59 AM > To: php-general@lists.php.net > Cc: [EMAIL PROTECTED] > Subject

RE: [PHP] Need help with RegEx

2006-12-11 Thread tg-php
If you didn't say "using regex" this is how I'd do it (untested, forgive typos and such..ripped from some code I actively use and stripped down): = = = Original message = = = The example provided didn't work for me. It gave me the same string without anything modified. I am also looking for

[PHP] pear xmlrpc question

2006-12-11 Thread José Peso Echarri
I have a simple helloWorld example in a xmlrpc version. The xmlrpc implementation that i have used is the pear package XML_RPC 1.5.1. The problem ocurrs when the server send back the response, i always receive the error "Invalid return payload:enable debuggin..". With debug enabled the output

RE: [PHP] Need help with RegEx

2006-12-11 Thread Brad Fuller
The example provided didn't work for me. It gave me the same string without anything modified. I am also looking for this solution to strip out text from some XML response I get from posting data to a remote server. I can do it using substring functions but I'd like something more compact and p

Re: [PHP] Need help with RegEx

2006-12-11 Thread Michael
I just realized I neglected to explain a couple of things here, sorry... My method will only work for the FIRST occurrence of the div tag pair in $source_html. The reason this method works is that you are telling preg_replace to replace everything that matches the match pattern, with just what

Re: [PHP] Need help with RegEx

2006-12-11 Thread Michael
At 01:02 AM 12/11/2006 , Anthony Papillion wrote: >Hello Everyone, > >I am having a bit of problems wrapping my head around regular expressions. I >thought I had a good grip on them but, for some reason, the expression I've >created below simply doesn't work! Basically, I need to retreive all of

[PHP] PHP - grabbing a thumb from FLV's (function)

2006-12-11 Thread Jason Paschal
i wanted to get my server to grab a thumbnail (video capture) of an FLV using PHP, and ffmpeg-php is not an option (at the moment, can't spare the possible downtime, many money-making sites involved). i installed ffmpeg. Fedora Core 4 users try this: yum install ffmpeg I went a more circuitous

Re: [PHP] Need help with RegEx

2006-12-11 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2006-12-11 02:02:46 -0600: > I am having a bit of problems wrapping my head around regular expressions. I > thought I had a good grip on them but, for some reason, the expression I've > created below simply doesn't work! Basically, I need to retreive all of the > text betwe

Re: [PHP] Need help with RegEx

2006-12-11 Thread T . Lensselink
I'm no regex guru but something goes wrong here. First of you miss the second parameter in preg_match int preg_match ( string pattern, string subject [, array &matches [, int flags [, int offset]]] ) If you need the text from two unique tags it should not be to hard: $test = "THIS IS A TEST";

Re: [PHP] Need help with RegEx

2006-12-11 Thread Børge Holen
explode it I'm having quite the difficulty to comprehend the regexp myself, but as a training, go ahead. On Monday 11 December 2006 09:02, Anthony Papillion wrote: > Hello Everyone, > > I am having a bit of problems wrapping my head around regular expressions. > I thought I had a good grip on th

[PHP] Need help with RegEx

2006-12-11 Thread Anthony Papillion
Hello Everyone, I am having a bit of problems wrapping my head around regular expressions. I thought I had a good grip on them but, for some reason, the expression I've created below simply doesn't work! Basically, I need to retreive all of the text between two unique and specific tags but I do

Re: [PHP] Re: news.php.net times out - unreachable for days

2006-12-11 Thread Lester Caine
Chuck Anderson wrote: In the time it takes to write a message, I lose my connection and often cannot even connect to send it. I'm hurrying this time, so I hope it works. ( not that time . timed out . I'll try Sending again) When I was forced to use the newsgroup interface I often