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

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 a href=javascript:some_js_function(); ... inside the function you can change source of one or more frames if you know javascript parent.frame1.src = ..

[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

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

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

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 everything

Re: [PHP] Help in PHPDoc

2002-03-12 Thread S.Murali Krishna
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 in PHPDoc Is anybody using PHPDoc for creating documentation, if yes could you tell me how to create documentation

RE: [PHP] Error Handler Problem

2002-03-10 Thread S.Murali Krishna
handlers is to add the following line to the top of your error handling function: if (!($type error_reporting())) return; [EMAIL PROTECTED]] [/quote] Read: http://www.php.net/manual/en/function.error-reporting.php Dan -Original Message- From: S.Murali Krishna [mailto:[EMAIL

[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=snippetid=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

[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. ?php class OO { var $a = 111; var $elem = array('b' = 9, 'c' = 42);

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

2002-03-07 Thread S.Murali Krishna
. [TK] -Original Message- From: S.Murali Krishna [mailto:[EMAIL PROTECTED]] Sent: Monday, 4 March 2002 9:48 PM To: Jack Cc: [EMAIL PROTECTED] Subject: Re: [PHP] What is - mean in php? If you have any Object Oriented Programming experience, then you may

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

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

[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

RE: [PHP] OOP .. overload not working

2002-03-05 Thread S.Murali Krishna
($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.Murali Krishna [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 4:38 PM To: [EMAIL PROTECTED] Subject: [PHP] OOP

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 what

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 PHP

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

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

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

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] Can this be done in PHP?

2002-02-02 Thread S.Murali Krishna
. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED] S.Murali Krishna [EMAIL PROTECTED] = We grow slow

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

2002-01-31 Thread S.Murali Krishna
-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED] S.Murali Krishna [EMAIL PROTECTED] = We grow slow trying to be great

[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