Re: [PHP] Php and Apache

2002-07-24 Thread S.Murali Krishna
On Wed, 24 Jul 2002, Varsha Agarwal wrote: >Hi, >I have istalled php from the red hat cd at the time i >installed red hat itself. I downloaded apache and >installed it. Can anyone tell me how to configure php >on apache server? I mean what do I do next to run php >scripts? I am totally new to all

[PHP] Is there any Jabber Client in PHP

2002-01-28 Thread S.Murali Krishna
Hi all Is there any jabber client in PHP available ?. I have searched the net and got some information on how to write jabber client, but ( to learn ) i need an existing one if any. S.Murali Krishna [EMAIL PROTECTED] = We grow slow trying

Re: [PHP] A function that executes php code in a string?

2002-01-31 Thread S.Murali Krishna
nds, e-mail: [EMAIL PROTECTED] > > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > > > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTEC

Re: [PHP] Can this be done in PHP?

2002-02-02 Thread S.Murali Krishna
> message. If you have received this message in error, please immediately > advise the sender by reply email and delete the message. Thank you very > much. > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-m

Re: [PHP] call stack

2002-02-08 Thread S.Murali Krishna
I had a similar requierment. When I searched for it, came to know about APD ( Advanced PHP Debugger ) its a extension. We need to do some confs in php.ini for this. APD is somewhat better in tracing stacks. Try your best. [EMAIL PROTECTED] On Fri, 8 Feb 2002, Martin Towell wrote: > I know this

Re: [PHP] extending a class?

2002-02-26 Thread S.Murali Krishna
Hi Instead of extending the class you can create a language object inside 'form' class and refer it for all your stuffs regardless of language. class form { function form($lang) { if($lang == "dk") { $this->lang = new dk(); } else if ($lang == "en") { $this->lang = ne

Re: [PHP] XML

2002-02-27 Thread S.Murali Krishna
I can't really get you, but I have done similar programs in php/xml I think if I could see the code or if I know the ultimate goal of you, I could able to solve the problem. On Tue, 26 Feb 2002, Tom Holton wrote: > > Hello, > I have come across a strange error when using the XML parsing funct

Re: [PHP] Hi

2002-02-28 Thread S.Murali Krishna
Hi dharma Better go about PHP manual ( since I started with that ). when you finish that, you would have some idea on where to go further. On Thu, 28 Feb 2002, dharmavatar wrote: > Hi everybody, > I am new in this group,so could any one tell me how to start learn PHP? > I had install P

Re: [PHP] class effeciency

2002-02-28 Thread S.Murali Krishna
Hi I too suggested a way for your previous problem. What you are doing is right here, but some corrections are there. You cannot use 'var' to declare variables inside constructors rather you could use them only before constructor, and intialize them inside constructor, look out the be

Re: [PHP] What is "->" mean in php?

2002-03-04 Thread S.Murali Krishna
If you have any Object Oriented Programming experience, then you may not had asked this. Its a operator to access methods, and variables inside a instance of a class , in which the variable before "->" is the instance of the class and the latter is a method or variable of that class. This is wha

Re: [PHP] data from service into array

2002-03-05 Thread S.Murali Krishna
Is anything hindering you from using XML expat? You can use that to do it. I already post a mail on this, search in the archive for xml related posts. On Tue, 5 Mar 2002, Craig Westerman wrote: > I'm retrieving data from a data service. > This is the ENTIRE source code of the URL they let me r

[PHP] OOP .. overload not working

2002-03-05 Thread S.Murali Krishna
Hi PHPzers Is php have to compile with anything to get 'overload' function to work, bcoz its not working on mine, by saying 'undefined function'. In manual ,there is no restriction in using this. <[EMAIL PROTECTED]> --- We must u

RE: [PHP] OOP .. overload not working

2002-03-05 Thread S.Murali Krishna
->x = 56; $val = new stdclass; $val->prop = 555; $o->a = array($val); var_dump($o->a[0]->prop); ?> On Wed, 6 Mar 2002, Martin Towell wrote: > can you provide a code snippet so we can see what you're doing? > > -Original Message- > From: S.Mural

[PHP] overload() not working

2002-03-07 Thread S.Murali Krishna
is any compile time configuration needed to make 'overload()' function to work ?. when I use the below code it's saying 'undefined function overload'. Hope some light on this. Thanks in advance. > class OO > { > var $a = 111; > var $elem = array('b' => 9, 'c' => 42); > > funct

RE: [PHP] What is "->" mean in php?

2002-03-07 Thread S.Murali Krishna
ght it was an > interesting connection to C++ and maybe hints at how PHP internally manages > objects. Perhaps it's just a coincidence. > > [TK] > > > -Original Message- > > From: S.Murali Krishna [mailto:[EMAIL PROTECTED]] > > Sent: Monday, 4

Re: [PHP] Re: Crontab

2002-03-07 Thread S.Murali Krishna
Why don't you call the script as command line one and redirect output to /dev/null. On Fri, 8 Mar 2002, Uma Shankari T. wrote: > > > I have given like that you have mentioned below.again it is giving the > same error.pls tell me how i will solve that.. > > "" Your terminal lacks the abi

[PHP] HTML Writer library functions

2002-03-09 Thread S.Murali Krishna
Hi All, Lets have a look at the following link to library functions to write HTML tags in easy way. Its very easy to use interface including documentation and Algorithm. http://phpBuilder.com/snippet/download.php?type=snippet&id=948 <[EMAIL PROTECTED]> APU (A Php User)

[PHP] Error Handler Problem

2002-03-09 Thread S.Murali Krishna
Hi All, I tell my requierment first. Just in short I want to capture a error of "Undefined Function .so and so..." . I set Error Handler to E_ALL & ~E_ERROR and I set my own Error Handler to capture errors then I called a Non-Existent Function intentionally. in this case

RE: [PHP] Error Handler Problem

2002-03-10 Thread S.Murali Krishna
/www.php.net/manual/en/function.error-reporting.php > > Dan > > -Original Message- > From: S.Murali Krishna [mailto:[EMAIL PROTECTED]] > Sent: Saturday, March 09, 2002 6:43 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Error Handler Problem > > > Hi All,

[PHP] Problem with ErrorHandler

2002-03-12 Thread S.Murali Krishna
Hi PHPzers How can I capture Error thrown by php for Non existent or undefined function. I used set_error_handler() but its returning its returning false. Anyway it gets called for NON-existent CONSTANT but not for Non-existent function. Can any one tell me what is goin

[PHP] Help in PHPDoc

2002-03-12 Thread S.Murali Krishna
Is anybody using PHPDoc for creating documentation, if yes could you tell me how to create documentation for a single "php" file which has enough comments needed by PHPDoc. <[EMAIL PROTECTED]> --- We must use time wisely a

Re: [PHP] PHP regular expression

2002-03-12 Thread S.Murali Krishna
Here is it $html = preg_replace('/"?Email:\s+\w.*\.[\w.]*"?/',"",$html); I tested it and its working. On Tue, 12 Mar 2002, Rodrigo Peres wrote: > Hi list, > > I have a huge text file with many text on it. I'd like to know if someone > can help in construct a regular expression to delete ever

Re: [PHP] Help in PHPDoc

2002-03-12 Thread S.Murali Krishna
for .php scripts that > have to be documented. > I've attached my index.php > > - Original Message - > From: "S.Murali Krishna" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, March 12, 2002 4:35 PM > Subject: [PHP] Help

[PHP] Compile problem

2002-03-13 Thread S.Murali Krishna
could anybody help me out, while compiling and Making PHP its going fine, but I couldn't get any php binary file instead a file named 'libphp4.la' was created. I want to compile it as a standalone binary as a normal user. Thanks in Advance. <[EMAIL PROTECTED]> -

[PHP] assert in php.ini setting.

2002-03-22 Thread S.Murali Krishna
can any one tell me what is this ;assert.active= On ; assert(expr); active by default ;assert.warning = On ; issue a PHP warning for each failed ;assert.bail= Off ; don't bail out by default. ;assert.callback = 0 ; user-function to be called if an assertion ;assert.

Re: [PHP] I am new

2002-03-27 Thread S.Murali Krishna
This is not really PHP stuff anyway see here.. This is possible with Javascript which can be placed in your link to refresh the frames inside the function you can change source of one or more frames if you know javascript parent.frame1.src = .. parent.frame2.src = On Wed, 27 Mar 20

[PHP] Weird Session headers

2002-04-09 Thread S.Murali Krishna
Hi! In short the problem Iam facing is this. When I send a excel file to IE browser using php, Iam using the following header info. header ( "Content-Type: application/x-msexcel" ); Its all ok. but when I send this header along with SESSION HANDLING HEADERS, IE was unable download the