[PHP] about php comet

2011-05-24 Thread 李白|字一日
hello, I am every interested in comet applications recently, and sadly found php is very weak in this area. i am just wondering if it is possible to write an extension to extend the ability of the php to easy the way to comet applications? if it possible for php to hold the connect from the clie

Re: [PHP] About PHP Implements

2007-12-19 Thread Chris
Andrew Ballard wrote: On Dec 18, 2007 4:58 PM, Jim Webber <[EMAIL PROTECTED]> wrote: Hello I have a PHP4 server and I'm trying to figure out how to do "implements" on classes. Is there an analogous way to do this without PHP5 installed? It isn't inheritance in the same sense as PHP5, but you

Re: [PHP] About PHP Implements

2007-12-19 Thread Nathan Nobbe
On Dec 19, 2007 11:17 AM, Andrew Ballard <[EMAIL PROTECTED]> wrote: > On Dec 18, 2007 4:58 PM, Jim Webber <[EMAIL PROTECTED]> wrote: > > Hello I have a PHP4 server and I'm trying to figure out how to do > > "implements" on classes. Is there an analogous way to do this without > > PHP5 installed? >

Re: [PHP] About PHP Implements

2007-12-19 Thread Andrew Ballard
On Dec 18, 2007 4:58 PM, Jim Webber <[EMAIL PROTECTED]> wrote: > Hello I have a PHP4 server and I'm trying to figure out how to do > "implements" on classes. Is there an analogous way to do this without > PHP5 installed? > It isn't inheritance in the same sense as PHP5, but you can use the method_

Re: [PHP] About PHP Implements

2007-12-18 Thread Nathan Nobbe
On Dec 18, 2007 5:45 PM, Chris <[EMAIL PROTECTED]> wrote: > Jim Webber wrote: > > Hello I have a PHP4 server and I'm trying to figure out how to do > > "implements" on classes. Is there an analogous way to do this without > > PHP5 installed? > > If you're using inheritance and child classes you co

Re: [PHP] About PHP Implements

2007-12-18 Thread Chris
Jim Webber wrote: Hello I have a PHP4 server and I'm trying to figure out how to do "implements" on classes. Is there an analogous way to do this without PHP5 installed? If you're using inheritance and child classes you could do it in a way, eg: class parent_class { function x() { ech

[PHP] About PHP Implements

2007-12-18 Thread Jim Webber
Hello I have a PHP4 server and I'm trying to figure out how to do "implements" on classes. Is there an analogous way to do this without PHP5 installed? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] About PHP/MYSQL Pagination

2007-08-07 Thread Richard Lynch
On Thu, August 2, 2007 8:12 pm, Kelvin Park wrote: > I just couldn't find it anywhere, google or yahoo. I know how to make > first, previous, last, and next links for php/mysql pagination. How do > you list page numbers in the middle, between previous and next? (ex. > << > first previous | 1 2 3 4

Re: [PHP] About PHP/MYSQL Pagination

2007-08-04 Thread Richard Heyes
I just couldn't find it anywhere, google or yahoo. I know how to make first, previous, last, and next links for php/mysql pagination. How do you list page numbers in the middle, between previous and next? (ex. << first previous | 1 2 3 4 5 | next last >> ) I know how to display them from 1 to

RE: [PHP] About PHP/MYSQL Pagination

2007-08-04 Thread Sanjeev N
nchanworld.com/ http://webdirectory.sanchanworld.com -Original Message- From: Kelvin Park [mailto:[EMAIL PROTECTED] Sent: Friday, August 03, 2007 6:43 AM To: php-general@lists.php.net Subject: [PHP] About PHP/MYSQL Pagination I just couldn't find it anywhere, google or yahoo. I know how to ma

[PHP] About PHP/MYSQL Pagination

2007-08-02 Thread Kelvin Park
I just couldn't find it anywhere, google or yahoo. I know how to make first, previous, last, and next links for php/mysql pagination. How do you list page numbers in the middle, between previous and next? (ex. << first previous | 1 2 3 4 5 | next last >> ) I know how to display them from 1 to

Re: [PHP] About PHP/XML/XSLT/MYSQL Web Sites

2007-07-12 Thread Richard Lynch
On Fri, July 13, 2007 12:19 am, Nathan Nobbe wrote: > thing as i mentioned before is i cannot see a reason to create xml > data while processing a GET or POST request from a client; it would > just be > an extra step with no apparent benefit as far as i can tell. You DEFINITELY are not being nearl

Re: [PHP] About PHP/XML/XSLT/MYSQL Web Sites

2007-07-12 Thread Richard Lynch
On Thu, July 12, 2007 4:15 pm, Kelvin Park wrote: > I'm trying to setup a XSLT based web site. > I wasn't exactly sure about the flow of the whole system when data > from > relational database is transferred to XML and in turn the data > inputted > from the user is relayed back to the database thro

Re: [PHP] About PHP/XML/XSLT/MYSQL Web Sites

2007-07-12 Thread Nathan Nobbe
kelvin, attached is a very simple diagram i put together when i got home illustrating a possible relationship between the main components in an xsl templated php application w/ a database back-end. as ive mentioned there are other configurations as well. primarily the main options in the overal

[PHP] About PHP/XML/XSLT/MYSQL Web Sites

2007-07-12 Thread Kelvin Park
I'm trying to setup a XSLT based web site. I wasn't exactly sure about the flow of the whole system when data from relational database is transferred to XML and in turn the data inputted from the user is relayed back to the database through XML (or directly to the database with PHP DB connectio

Re: [PHP] About PHP CMS

2007-07-08 Thread tedd
At 8:24 PM -0400 7/7/07, Nathan Nobbe wrote: kelvin, here is the example: catalog.php load('catalog.xsl'); $xsl->importStyleSheet($doc); $doc->load('catalog.xml'); echo $xsl->transformToXML($doc); ?> catalog.xml Empire Burlesque Bob Dylan USA Columbia 10.90 1985 catalog.xsl http://www.w

Re: [PHP] About PHP CMS

2007-07-07 Thread Anton C. Swartz IV
No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.476 / Virus Database: 269.10.1/889 - Release Date: 7/6/2007 8:00 PM -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Fwd: [PHP] About PHP CMS

2007-07-07 Thread Nathan Nobbe
fogot to copy the list on this as well; my bad :( -- Forwarded message -- From: Nathan Nobbe <[EMAIL PROTECTED]> Date: Jul 7, 2007 3:00 PM Subject: Re: [PHP] About PHP CMS To: Kelvin Park <[EMAIL PROTECTED]> On 7/7/07, Kelvin Park <[EMAIL PROTECTED]> wrote: Lo

Re: [PHP] About PHP CMS

2007-07-07 Thread Nathan Nobbe
kelvin, here is the example: catalog.php load('catalog.xsl'); $xsl->importStyleSheet($doc); $doc->load('catalog.xml'); echo $xsl->transformToXML($doc); ?> catalog.xml Empire Burlesque Bob Dylan USA Columbia 10.90 1985 catalog.xsl http://www.w3.org/1999/XSL/Transform";> My CD Collecti

Fwd: [PHP] About PHP CMS

2007-07-07 Thread Nathan Nobbe
forgot to copy the list on this one, sorry -- Forwarded message -- From: Nathan Nobbe <[EMAIL PROTECTED]> Date: Jul 7, 2007 2:13 PM Subject: Re: [PHP] About PHP CMS To: Kelvin Park <[EMAIL PROTECTED]> On 7/7/07, Kelvin Park <[EMAIL PROTECTED]> wrote: C

Re: [PHP] About PHP CMS

2007-07-07 Thread Nathan Nobbe
to keep html separate from php you can also look at XSLT. ive heard good and bad things about smarty. -nathan On 7/6/07, Davi <[EMAIL PROTECTED]> wrote: Em Sexta 06 Julho 2007 21:24, Kelvin Park escreveu: > Is it possible to have PHP code completely separate from the HTML page that > needs to

Re: [PHP] About PHP CMS

2007-07-06 Thread Davi
Em Sexta 06 Julho 2007 21:24, Kelvin Park escreveu: > Is it possible to have PHP code completely separate from the HTML page that > needs to be completely dynamic? (That's how ASP.NET sort of works I think). > If this is possible, HTML CODE, PHP CODE, AND THE CSS CODE can be > completely separate,

[PHP] About PHP CMS

2007-07-06 Thread Kelvin Park
Is it possible to have PHP code completely separate from the HTML page that needs to be completely dynamic? (That's how ASP.NET sort of works I think). If this is possible, HTML CODE, PHP CODE, AND THE CSS CODE can be completely separate, increasing the clarity of all the source code. My second q

Re: [PHP] about PHP Graphic .

2005-06-04 Thread Richard Lynch
On Sat, June 4, 2005 3:47 am, NeginGostar.com :: Administrator said: > I want know about PHP Graphic . > I want use graphic in php but i cant setup GD library , in my server > My Server is Windows 2003 > and i want install graphic in php First, make a PHP file with in it, and surf to it. Then, f

[PHP] about PHP Graphic .

2005-06-04 Thread NeginGostar.com :: Administrator
Hello Dear I want know about PHP Graphic . I want use graphic in php but i cant setup GD library , in my server My Server is Windows 2003 and i want install graphic in php please help me, thanks

Re: [PHP] About php and mysql

2004-02-24 Thread Jason Wong
On Tuesday 24 February 2004 22:47, [EMAIL PROTECTED] wrote: > Does older than php 4.2.2 support with this function ? As has already been suggested, could you try reading the manual? Please? -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web De

Re: [PHP] About php and mysql

2004-02-24 Thread edwardspl
Does older than php 4.2.2 support with this function ? Matt Matijevich wrote: > > I want to know how to control php program connect to MySQL Database > System ( another computer machine ) ? > > > http://www.php.net/manual/en/function.mysql-connect.php > http://www.php.net/manual/en/function.mys

Re: [PHP] About php and mysql

2004-02-24 Thread Matt Matijevich
I want to know how to control php program connect to MySQL Database System ( another computer machine ) ? http://www.php.net/manual/en/function.mysql-connect.php http://www.php.net/manual/en/function.mysql-pconnect.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] About php and mysql

2004-02-24 Thread edwardspl
Hello, I want to know how to control php program connect to MySQL Database System ( another computer machine ) ? Thank a lots. Ed. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] About php

2003-11-10 Thread Pavel Jartsev
webmaster wrote: We have a data base in access 2000. Could you advise which version of php will connect to the access. Please advise also how can i open the connection . Look into ODBC-functions: http://www.php.net/manual/en/function.odbc-connect.php -- Pavel a.k.a. Papi -- PHP General Mailing

[PHP] About php

2003-11-10 Thread webmaster
We have a data base in access 2000. Could you advise which version of php will connect to the access. Please advise also how can i open the connection . Thank you in advance for your assistance. Best regards Marlyn Estefanos Businesslink. -- PHP General Mailing List (http://www.php.ne

Re: [PHP] About PHP introduction

2003-10-08 Thread Evan Nemerson
What kind of presentation? If it helps, http://www.coeus-group.com/qwik-e-wiki.php/lamp It's a wiki, so if you do find some useful information, please contribute. On Wednesday 08 October 2003 09:54 pm, Uma Shankari T. wrote: > Hello, > >I need to give a presentation about php & mysql. Can an

Re: [PHP] About PHP introduction

2003-10-08 Thread Chris Shiflett
--- "Uma Shankari T." <[EMAIL PROTECTED]> wrote: > Can any one please tell me the url there i can find useful stuffs > about php & mysql ?? That's a vague question, but... http://www.php.net/ http://www.mysql.com/ Hope that helps. Chris = My Blog http://shiflett.org/ HTTP Developer's

[PHP] About PHP introduction

2003-10-08 Thread Uma Shankari T.
Hello, I need to give a presentation about php & mysql. Can any one please tell me the url there i can find useful stuffs about php & mysql ?? Regards, Uma -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] About php String function

2003-09-24 Thread Eugene Lee
On Thu, Sep 25, 2003 at 10:48:19AM +0530, Uma Shankari T. wrote: : : I am using strpos function for finding the string position in a : particular string .If the string value is equal to zero or greater : than zero some steps to be executed. If the position is empty it is taking : as zero val

Re: [PHP] About php String function

2003-09-24 Thread Tom Rogers
Hi, Thursday, September 25, 2003, 3:18:19 PM, you wrote: UST> Hello, UST> I am using strpos function for finding the string position in a UST> particular string .If the string value is equal to zero or greater UST> than zero some steps to be executed. If the position is empty it is taking

[PHP] About php String function

2003-09-24 Thread Uma Shankari T.
Hello, I am using strpos function for finding the string position in a particular string .If the string value is equal to zero or greater than zero some steps to be executed. If the position is empty it is taking as zero value and executing the steps under equal to zero loop..Is there any

Re: [PHP] About PHP & Oracle

2001-08-30 Thread Joel Ricker
> Dear all, > Now i have an Oracle database. I have created a table contains 43 rows for example. I use PHP to contact with my oracle. I want to write a script access my Oracle for display data into table. Each time display 9 rows. So I dont't know how to program such as "Page 1 2 3 4 Next".Can an

[PHP] About PHP & Oracle

2001-08-30 Thread Duy B
Dear all, Now i have an Oracle database. I have created a table contains 43 rows for example. I use PHP to contact with my oracle. I want to write a script access my Oracle for display data into table. Each time display 9 rows. So I dont't know how to program such as "Page 1 2 3 4 Next".Can any

Re: [PHP] ? about PHP includes

2001-08-04 Thread David Robley
On Fri, 3 Aug 2001 10:16, Craig Westerman wrote: > Hello all, > > I just discovered PHP this week. I'm reading about include statements. > If I have a text file 2000 characters in length that I want to include, > I would do this to include to whole file: > > include ("file.txt"); > ?> > > What w

RE: [PHP] ? about PHP includes

2001-08-03 Thread Craig Westerman
OPen the file and read in the required number of characters (short explanation). Have a look at the file handling functions. -- David Robley Thanks David, I came up with this, but it doesn't work. Does text file need to be in a special format? It is 4 paragraphs of plain text created in notepa

Re: [PHP] ? about PHP includes

2001-08-03 Thread Christian Reiniger
On Friday 03 August 2001 05:59, Craig Westerman wrote: > $txtfile = fopen("text.txt", "r"); > > while (!feof($filePointer)) $txtfile instead of $filePointer > { > $line = fgets($txtfile, 250); fgets reads a line (i.e. up to a newline) with at most the specified numbers of characters. So

[PHP] about php and Interbase

2001-07-03 Thread Yamilé
Hi: I have PHP4 and Interbase 6.0 Super Server but ... Fatal Error: Call to undefined function ibase_connect() ... any idea? Is there something like php-interbase...rpm? Thanks fausto. __ Do You Yahoo!? Get personalized email addresses from Y

Re: [PHP] About php

2001-03-28 Thread Tim McGuire
Here is a post from a few months ago that has an idea about your question: Tim __ Quick answer: Nothing, if it works. Which browser supports it? Anthony -Original Message- From: Ignacio Vazquez-Abrams [mailto:[EMAIL PROTECTED]

Re: [PHP] About php

2001-03-28 Thread Pavel Kalian
You can only reference such elements using it's indexes in javascript. try formName.elements[3].value //(replace 3 with the index of your ) Pavel > > "vishak tomy" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello, > I have a doubt about multi s

Re: [PHP] About php

2001-03-28 Thread elias
Please re-phrase, i might be able to help you. give me an example too. "vishak tomy" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, I have a doubt about multi select from drop down, if i set it as then how could I check it for javascript validati

[PHP] About php

2001-03-28 Thread vishak tomy
Hello, I have a doubt about multi select from drop down, if i set it as then how could I check it for javascript validation. for this select, If any alternative for this please inform me. Vishak Get free email and a pe