php-general Digest 11 Dec 2006 11:54:25 -0000 Issue 4508

2006-12-11 Thread php-general-digest-help
php-general Digest 11 Dec 2006 11:54:25 - Issue 4508 Topics (messages 245692 through 245706): Re: How to compile Delphi SC ? 245692 by: Stut 245693 by: Stut 245694 by: Børge Holen Re: fopen failed to open pipe file in Linux+Apache environment 245695 by:

php-general Digest 12 Dec 2006 00:09:19 -0000 Issue 4509

2006-12-11 Thread php-general-digest-help
php-general Digest 12 Dec 2006 00:09:19 - Issue 4509 Topics (messages 245707 through 245722): Re: Need help with RegEx 245707 by: Michael 245708 by: Brad Fuller 245710 by: tg-php.gryffyndevelopment.com 245711 by: Brad Fuller 245713 by: Michael pear

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

[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

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 them

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 = tag lang='ttt'THIS

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 between

[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

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 the

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

[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 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): ?PHP $_XML_RESPONSE_PARSER = xml_parser_create(); xml_set_element_handler($_XML_RESPONSE_PARSER, 'xml_response_open_element_function',

RE: [PHP] Need help with RegEx

2006-12-11 Thread Brad Fuller
I got it. ?php $input = xmlJunkstatusHello, World!/status/xmlJunk; preg_match(#status(.*?)/status#s, $input, $matches); echo $matches[1]; ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, December 11, 2006 10:59 AM To:

[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 b/b around it). I have a solution that is working very well, but am thinking that

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 my

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

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 I need to

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

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

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

[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

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 that

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

[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

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

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

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

[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