Re: [PHP] N/A
Rory Browne wrote: As Ireland's property developers scramble to snap up every last square metre of prime Dublin real estate, a green oasis in the heart of this booming capital is standing firm against the tide of change. fantastic Rory! lol All this may seem highly irrelevent, but when you have a N/A subject, then anything is in. Consider yourself lucky, that Jay, and Jasper, gave your question enough seriousness to direct you to the manual. Personally I would have simply directed you to ESR's essay on Smart Questions(available from John Nichels response) On 8/9/05, R. Ragunathan <[EMAIL PROTECTED]> wrote: hi, can we implement postgres transactions with php. if anyone knows the solution please reply back. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] N/A
As Ireland's property developers scramble to snap up every last square metre of prime Dublin real estate, a green oasis in the heart of this booming capital is standing firm against the tide of change. All this may seem highly irrelevent, but when you have a N/A subject, then anything is in. Consider yourself lucky, that Jay, and Jasper, gave your question enough seriousness to direct you to the manual. Personally I would have simply directed you to ESR's essay on Smart Questions(available from John Nichels response) On 8/9/05, R. Ragunathan <[EMAIL PROTECTED]> wrote: > > > hi, > > can we implement postgres transactions with php. > if anyone knows the solution please reply back. > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] N/A
R. Ragunathan wrote: hi, can we implement lock to a table using postgres with php. if any of u all knows the solution do reply back. http://www.catb.org/~esr/faqs/smart-questions.html Pay close attention to the sections dealing with "Before you ask", and "Use meaningful, specific subject headers" -- John C. Nichel ÜberGeek KegWorks.com 716.856.9675 [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] N/A
R. Ragunathan wrote: can we implement lock to a table using postgres with php. if any of u all knows the solution do reply back. You may also want to look at the following URL: http://www.postgresql.org/docs/8.0/interactive/explicit-locking.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] N/A
R. Ragunathan wrote: can we implement lock to a table using postgres with php. if any of u all knows the solution do reply back. Please, for the second time, simply read the manual. http://www.php.net/pgsql It explains both the issues you have recently posted about very well. If you have a specific question then post back to the list. Oh, and a descriptive subject rather than "N/A" may help if you want people to read your message. Jasper -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] N/A
hi, can we implement lock to a table using postgres with php. if any of u all knows the solution do reply back. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
RE: [PHP] N/A
[snip] can we implement postgres transactions with php. if anyone knows the solution please reply back. [/snip] Have you read http://www.php.net/postgres ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] N/A
hi, can we implement postgres transactions with php. if anyone knows the solution please reply back. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] N/A
Hey Peter-- If the file is always local and you're using a relatively recent version of PHP, you can use file_get_contents instead: http://ca.php.net/file_get_contents Cheers, Marco -- php|architect -- The magazine for PHP professionals Try us free at http://www.phparch.com Searchable PHP Mailing Archive at http://phparch.com/mailinglists Peter Flachbart wrote: I'm trying to use this function to outpot the content of a file that I change time to time so I'd like to see the added text into file to appear in the browser window. Could you help me? (stream_select doesn't work???) $fh = fopen('debug.txt','r+'); stream_set_blocking($fh ,true); while(true){ $text = fgets($fh,10); echo $text; flush(); ob_flush(); } fclose($fh); ?> Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] N/A
I'm trying to use this function to outpot the content of a file that I change time to time so I'd like to see the added text into file to appear in the browser window. Could you help me? (stream_select doesn't work???) Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php