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
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
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?
>
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_
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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,
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
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
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
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
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
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:
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
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
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
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
--- "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
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
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
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
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
> 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
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
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
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
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
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
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]
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
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
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
47 matches
Mail list logo