[PHP] Doubt on using header and setcookie functions

2002-10-07 Thread Balaji Ankem
Hi How to set cookies using header() function and using setcookie function? Setcookie('testcookie','Balaji',time()+3600,'/','10.145.0.1',1); If I want to write same thing with header function how can I do that? Is it like header("Set-Cookie: name=testcookie,value=Balaji,domain=10.145.0.1,sec

RE: [PHP] Help required on cookies

2002-10-02 Thread Balaji Ankem
: Wednesday, October 02, 2002 2:52 PM To: Balaji Ankem Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Help required on cookies Balaji Ankem wrote: > > >It is giving error saying call to undefined function _r(); > That's weird. Maybe you have a space between print and _r? The function is

RE: [PHP] Help required on cookies

2002-10-02 Thread Balaji Ankem
]] Sent: Wednesday, October 02, 2002 2:21 PM To: Balaji Ankem Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Help required on cookies Balaji Ankem wrote: >Hi Friends, > >I would like to know where the cookies will be stored? > Cookies are stored on the client, either in memory or written to

[PHP] Help required on cookies

2002-10-02 Thread Balaji Ankem
Hi Friends, I would like to know where the cookies will be stored? I have enabled cookies using session.use_cookies = 1. I found cookies will be stored in the environmental variable HTPP_COOKIE_VARS. But I didn't find anywhere this variable in my php.ini file. If I want to print all cookies

RE: [PHP] Re-directing

2002-07-24 Thread Balaji Ankem
Use header() function.. Header('Location: script name'); Best Regards Balaji -Original Message- From: Roberts, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 7:58 PM To: PHP Mailing list (E-mail) Subject: [PHP] Re-directing Is there a way to redirect to a different sc

RE: [PHP] why my php can not get values from Form?

2002-07-17 Thread Balaji Ankem
Enable Rigister_globals to On in php.ini file and then try. Best Regards Balaji -Original Message- From: ram friend [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 18, 2002 11:12 AM To: [EMAIL PROTECTED] Subject: [PHP] why my php can not get values from Form? hello, I have just instal

RE: [PHP] Problem with implode() function

2002-07-16 Thread Balaji Ankem
e: [PHP] Problem with implode() function On Tuesday 16 July 2002 22:40, Balaji Ankem wrote: > Hi, > I have an array of elements which are separated with the operator > comma(,). > > == > $array = implode(",", $

[PHP] Problem with implode() function

2002-07-16 Thread Balaji Ankem
Hi, I have an array of elements which are separated with the operator comma(,). == $array = implode(",", $checkb); echo $array.'\n'; $result = mysql_query("DELETE FROM temp WHERE inv_tag IN ($array)") or die('Error in quer

[PHP] For Unsubscribe send a blank mail to ( php-general-unsubscribe@lists.php.net)

2002-07-13 Thread Balaji Ankem
Hi guys, To unsubscribe from the list send a mail to [EMAIL PROTECTED] Visit http://www.php.net/unsub.php . Pls. Donot send a mail tp [EMAIL PROTECTED] Best regards Balaji -Original Message- From: gys [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 13, 2002 5:03 PM To: [EMAIL PRO

RE: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread Balaji Ankem
Yes..That is right!!! :-) -Original Message- From: Tyler Longren [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 8:53 AM To: Balaji Ankem Cc: [EMAIL PROTECTED] Subject: Re: [PHP] HTTP_USER_AGENT? It works for you because you have register_globals set to "on" in ph

RE: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread Balaji Ankem
It is working fine for me!!! -Original Message- From: George Hester [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 8:03 AM To: [EMAIL PROTECTED] Subject: [PHP] HTTP_USER_AGENT? I have this in my web site not in an executable folder: My First PHP Program No problem.

RE: [PHP] is their a jobs mailing list?

2002-07-08 Thread Balaji Ankem
Will it be not possible to apply for other countries jobs? -Original Message- From: Dan Hardiker [mailto:[EMAIL PROTECTED]] Sent: Monday, July 08, 2002 2:12 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [PHP] is their a jobs mailing list? I have no idea if this of any use

[PHP] help help help!!!!!!pls........

2002-07-06 Thread Balaji Ankem
Hi dear friend, I have multiple check boxes ...and I gave the single name to all check boxes. If I post to my php script I am not getting all the values as an array.I am getting only one value(last value). = function checkitall() { v

[PHP] How to trigger particular java script function?

2002-07-04 Thread Balaji Ankem
Hi friend, I want to trigger one java script function ( time delay) every time. How can I achieve this? Here my questuion is: I want to play all song files from my database. Here what I do is initially I display one button "PLAY" and then call java script delay function and it has to come back

[PHP] HTML & Java script doubt..

2002-07-04 Thread Balaji Ankem
Hi friend, sorry for putting this question to php-list. Here I am getting the error as "Object doesn't support this property or method" in line number 22. function checkall() { var n=0,i=document.form1.OptionList.length; while(n

RE: [PHP] Displaying the table records along with check boxes.

2002-07-03 Thread Balaji Ankem
5:56 PM To: Balaji Ankem; [EMAIL PROTECTED] Subject: Re: [PHP] Displaying the table records along with check boxes. The code to create a check box is: HTH, ---John Holmes... PS: It might help if you actually try to do something yourself and then ask a question. We're not here to fee

[PHP] Displaying the table records along with check boxes.

2002-07-03 Thread Balaji Ankem
Hi friend, I would like to display the table records along with check boxes for the purpose of selecting particular records or select all and for deleteing them or for other purpose. Anybody have ready made code for this type... Any help would be greatly appreciated. Thanks and Regards Ba

RE: [PHP] Will mail() function work for SMTP servers which needs Authentication

2002-07-02 Thread Balaji Ankem
work for SMTP servers which needs Authentication On Wednesday 03 July 2002 11:57, Balaji Ankem wrote: > Hi friend, > Will mail()function work for SMTP servers which needs authentication? > If so how can pass the username and password to my SMTP server. > > Any help would be great

[PHP] Will mail() function work for SMTP servers which needs Authentication

2002-07-02 Thread Balaji Ankem
Hi friend, Will mail()function work for SMTP servers which needs authentication? If so how can pass the username and password to my SMTP server. Any help would be greatly appreciated. Thanks in advance Balaji **Disclaimer Inform

RE: [PHP] Re: Email error (Was: Hi Jason)

2002-07-02 Thread Balaji Ankem
Hi jason, Thankyou for the prompt reply.:-) here is the code. Actually line number 18 and 22 are having mail functions..that why I didn't send source code. Here is the source code.. == just visited your site and submitted the form at www.auburn.edu/helpd

[PHP] Mail() function problem

2002-07-02 Thread Balaji Ankem
Hi friend, I am using the SMTP server which needs authentication. When I use mail([EMAIL PROTECTED],"Thanks for visiting","From:[EMAIL PROTECTED]"); I am getting server error on the line which is having this mail function. How can I resolve this problem? Php.ini settings =

[PHP] Php mail() function is not working for me

2002-07-02 Thread Balaji Ankem
Hi friend, I am getting the following problem from last 6 months..still I couldn't solve this problem. >>Warning: Failed to Connect in c:\www\imac\email.php on line 18 >>Warning: Failed to Connect in c:\www\imac\email.php on line 22 Email.php just visited your site and submitted

RE: [PHP] uploading a file

2002-07-01 Thread Balaji Ankem
Upload.html === FileUpload function check() { document.upload.method = "POST"; document.upload.enctype='multipart/form-data' document.upload.action="upload.php"; doc

RE: [PHP] Problem with postfield elements

2002-06-13 Thread Balaji Ankem
: Balaji Ankem Subject: Re: [PHP] Problem with postfield elements on 13/06/02 4:50 PM, Balaji Ankem ([EMAIL PROTECTED]) wrote: > Every time I have to refer like this $_POST['emp_id']. Can't I refer > as $emp_id ? Yes, partly. 1. you can always turn register globals back ON,

RE: [PHP] Problem with postfield elements

2002-06-12 Thread Balaji Ankem
OST['emp_id']. Can't I refer as $emp_id ? Thanks and Regards Balaji -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 12:15 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Problem with postfield elements On Thursday 13 June 2002 14:

[PHP] Problem with postfield elements

2002-06-12 Thread Balaji Ankem
Hi friend, Just now I have installed php 4.2.1 on my windows NT machine. Here I found I am not able to get the postfield values. What would be the reason? Thanks and Regards Balaji. Login.html = function check() { document.login.method = "POST"; document.

RE: [PHP] Is there any substitute for header function?

2002-05-29 Thread Balaji Ankem
--Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 29, 2002 12:32 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Is there any substitute for header function? On Wednesday 29 May 2002 14:14, Balaji Ankem wrote: > Hi Martin, > I have tried with full

RE: [PHP] Is there any substitute for header function?

2002-05-28 Thread Balaji Ankem
Hi Martin, I have tried with full URL. But no use. Again displayed the error alert. Thanks and Regards Balaji -Original Message- From: Martin Towell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 29, 2002 11:37 AM To: 'Balaji Ankem'; [EMAIL PROTECTED] Subject: RE: [PHP] Is

RE: [PHP] Is there any substitute for header function?

2002-05-28 Thread Balaji Ankem
29, 2002 11:28 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Is there any substitute for header function? On Wednesday 29 May 2002 13:49, Balaji Ankem wrote: First of all, please start a new post when you have a new question. Do not just reply to an existing post. It's bad manners. And quotin

[PHP] Is there any substitute for header function?

2002-05-28 Thread Balaji Ankem
Hi, Is there any substitute for header function.. Because of this I am getting error saying.."php.exe has generated some errors and will be closed by windows". if ($row->user_type=='A') { mysql_close($connection); header("Location:admin.php"); exit; } Thanks in advance

RE: [PHP] Can someone check this mysql code

2002-05-19 Thread Balaji Ankem
Try this.. > $answers="$band, $middlename, $pot"; > $date=date ("l dS of F Y h:i:s A"); > > $sql = "INSERT INTO prizeline VALUES ('', 'email', 'name', 'address', 'answers', > 'date');"; -Balaji -Original Message- From: Miguel Cruz [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20,

Re: [PHP] Session.save_path in php.ini

2002-04-25 Thread Balaji Ankem
Which php.ini file u r changing? Are u refering php.ini which is in C:\Windows directory? - Original Message - From: Tim Loram <[EMAIL PROTECTED]> Date: Thursday, April 25, 2002 4:56 pm Subject: [PHP] Session.save_path in php.ini > Hi, > > Having some issues with the session.save_path

[PHP] How to connect to mysql through JAVA?

2002-04-23 Thread Balaji Ankem
Hi, What is the command to connect to mysql through java. Thanks and Regards Balaji **Disclaimer Information contained in this E-MAIL being proprietary to Wipro Limited is 'privileged' and 'confidential' and intended for use only by

Re: [PHP] uploading files problem

2002-03-29 Thread Balaji Ankem
specify the value attribute in input elements!!! - Original Message - From: "Balaji Ankem" <[EMAIL PROTECTED]> Date: Friday, March 29, 2002 4:27 pm Subject: Re: [PHP] uploading files problem > hi friend, > > do we have static variables in php? > > If w

Re: [PHP] uploading files problem

2002-03-29 Thread Balaji Ankem
hi friend, do we have static variables in php? If we have can u give the syntax!!1 Thanks in advance Balaji Content-Type: multipart/alternative; boundary="_=_NextPart_001_01C1D70D.F3519000" --_=_NextPart_001_01C1D70D.F3519000 Content-Type: text/plain hi there, I'm trying to

[PHP] How to remove ^M characters from a directory?

2002-03-26 Thread Balaji Ankem
Hi, I have moved my php files to linux system. Now it z showing (control+M)(^M) characters in the file. How can I remove those characters? Any help would be appreciable. Thanks and Regards Balaji **Disclaimer Information

RE: [PHP] Hi! Is there any equivalent function with header?

2002-03-19 Thread Balaji Ankem
uot; And no error is logged in error log. Thanks in advance Balaji -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 7:57 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Hi! Is there any equivalent function with header? On Tuesday 19 March 2002 22:20

[PHP] Hi! Is there any equivalent function with header?

2002-03-19 Thread Balaji Ankem
Hi friend, Is there any equivalent statement to header ("Location: user.php"); Because I am getting problem with that line in fresh browser context. How to see the php error log? And how to display an error messages in php? Thanks and Regards -Balaji ***

RE: [PHP] 100% repeatable problem with PHP 4.0.1 in WIN2k environment.

2002-03-19 Thread Balaji Ankem
in php.ini)? Have you tried putting echo statements every few lines to see exactly where and why the script dies? Balaji Ankem wrote: > Hi, > I am able to produce the following problem 100% in WINDOWS. > > Problem is u can not produce success message in new browser context

RE: [PHP] 100% repeatable problem with PHP 4.0.1 in WIN2k environment.

2002-03-19 Thread Balaji Ankem
PROTECTED]] Sent: Tuesday, March 19, 2002 5:06 PM To: Balaji Ankem Subject: Re: [PHP] 100% repeatable problem with PHP 4.0.1 in WIN2k environment. Hi, From the surface leve, it looks like your php.exe corrupted and probably crashed ?. Or doesn't works properly with your webserver

[PHP] 100% repeatable problem with PHP 4.0.1 in WIN2k environment.

2002-03-19 Thread Balaji Ankem
Hi, I am able to produce the following problem 100% in WINDOWS. Problem is u can not produce success message in new browser context .. Error: php.exe has generated some errors and will be closed by windows. I am facing this problem from last 1 year. Files Login.html =

RE: [PHP] Store data in array

2002-03-18 Thread Balaji Ankem
Hi Uma, you can use as in C language with index. $a[i]= $val; i is index starts from zero. For example u want to extract specific field from mysql database and store it in array.. Let us assume num is a attribute name of the table heap. ===

[PHP] Hi some logic help is required!!!!!

2002-03-14 Thread Balaji Ankem
Hi friend, I need some help on this logic... 1. I have some range (A to B) which is fixed and A,B are very large numbers.(A **Disclaimer Information contained in this E-MAIL being proprietary to Wipro Limited is 'priv

[PHP] Hi some logical help is required!!!

2002-03-14 Thread Balaji Ankem
**Disclaimer Information contained in this E-MAIL being proprietary to Wipro Limited is 'privileged' and 'confidential' and intended for use only by the individual or entity to which it is addressed. You are notified that any

[PHP] Hi what is diff. Between mktime() and UNIX_TIMESTAMP()

2002-03-14 Thread Balaji Ankem
Hi, UNIX_TIMESTAMP(2002-03-21 08:30:00) and mktime(2002,03,21,08,30,00) equal or not? But both are same timestamp..but returning values are different.y? Unixtimestamp from Mysql :1016679600 Unixtimestamp from PHP :953699601 y this much

[PHP] Hi what is the prob with this small file?

2002-03-14 Thread Balaji Ankem
Hi friend, I am getting null values (0) for the following program. what will be the problem? Any help greatly appreciable!! example.php === startdate.'endtime'.$row->enddate; } mysql_close($connection); ?> ==

RE: [PHP] Random number Question

2002-03-12 Thread Balaji Ankem
Try Now: The computer has picked a number between 1 and 10. Guess the number and you win! Enter your guess: -Original Message- From: Jennifer Downey [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 13, 2010 9:25 AM To: [EMAIL PROTECTED] Subject: [PHP] Random number Question Hi a

RE: [PHP] Hi How to convert the time from mysql(DATETIME) table to the format DD/MM/YYYY HH:MM AM or PM in PHP?

2002-03-12 Thread Balaji Ankem
, March 13, 2002 7:04 AM To: Balaji Ankem; 'Php-General' Subject: Re: [PHP] Hi How to convert the time from mysql(DATETIME) table to the format DD/MM/ HH:MM AM or PM in PHP? Try date("d/m/Y h:m A"); On Tuesday 12 March 2002 18:29, Balaji Ankem wrote: > Hi, >

RE: [PHP] Hi How to compare two dates using PHP which are from mysql database?

2002-03-12 Thread Balaji Ankem
: Tuesday, March 12, 2002 6:40 PM To: Balaji Ankem Cc: Php-General Subject: Re: [PHP] Hi How to compare two dates using PHP which are from mysql database? On Tue, 12 Mar 2002, Balaji Ankem wrote: http://www.php.net/manual/en/function.strtotime.php you can compare the results with > < =, etc...

[PHP] Hi How to compare two dates using PHP which are from mysql database?

2002-03-12 Thread Balaji Ankem
Hi, I would like to compare the two dates (including time stamp) using php. Is it possible? Any help would be apprciable. Thanks in advance Balaji **Disclaimer Information contained in this E-MAIL bei

RE: [PHP] Hi How to convert the mysql(DATETIME) time to the format DD/MM/YYYY HH:MM AM or PM using PHP?

2002-03-12 Thread Balaji Ankem
Hi friend, I never ued strftime function. I am confusing with the syntax. My problem is like this: I have the DATETIME in the variable $row->fromdate as -MM-DD HH:MM:SS. Is it possible to convert it to DD/MM/ HH:MM AM or PM using strftime() func

RE: [PHP] Hi How to convert the time from mysql(DATETIME) table to the format DD/MM/YYYY HH:MM AM or PM in PHP?

2002-03-12 Thread Balaji Ankem
/MM/ HH:MM AM or PM in PHP? Do you want to do this in mySQL or PHP? Niklas -Original Message- From: Balaji Ankem [mailto:[EMAIL PROTECTED]] Sent: 12. maaliskuuta 2002 12:30 To: 'Php-General' Subject: [PHP] Hi How to convert the time from mysql(DATETIME) table to the format

[PHP] Hi How to convert the time from mysql(DATETIME) table to the format DD/MM/YYYY HH:MM AM or PM in PHP?

2002-03-12 Thread Balaji Ankem
Hi, I have stored the date and time in mysql table with DATETIME type. I want to change it in to DD/MM/ HH:MM AM or PM. How can I do this? Thanks in advance Balaji **Disclaimer Information contai

[PHP] Can anybody tell what is wrong with this file?

2002-03-12 Thread Balaji Ankem
Title: Message  H i friend,    I am using the browser Netscape 4.7.    It z not displaying the select box..blindly displaying in text format.. (If u want to see open example.jpg)   Example.html=            1     

[PHP] Hi can we write a form inside td element of a table?

2002-03-11 Thread Balaji Ankem
Hi, can we give a form element as td inside table element? Thanks in advance Balaji **Disclaimer Information contained in this E-MAIL being proprietary to Wipro Limited is 'privileged' and 'confidential' and intended

[PHP] Hi problem with selected value!!

2002-03-11 Thread Balaji Ankem
Title: Message Hi friend,  could u plz. Tell me how to display the slected option value in alert box?Code I wrote is like this.. But I am getting NULL.. Any help would be appreciable..=

function check()
{
    var a;
   

Re: [PHP] Can anybody help me?

. Forward it to me. Thanks in advance Balaji -Original Message- From: Tyler Longren [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07, 2002 7:08 PM To: Balaji Ankem; Php-General Subject: Re: [PHP] Can anybody help me? Did you recieve an error? If so, what was it? Tyler - Original

[PHP] Anybody have the script for getting date from the user and validating it?

Hi, If any body have the script for getting the date including the time from the user and validating it. If anybody have can u please forward it to me. Thanks in advance Balaji **Disclaimer Information contain

[PHP] Can anybody help me?

Hi friend, from morning onwards I am facing the problem with following php script. This script functionality as follows: Getting the date from user and validating it. I couldn't trace where the error is. Can anybody help me? Any help greatly appreciable. Devicetag.php --

[PHP] Is it correct having number of forms in the same html page?

**Disclaimer Information contained in this E-MAIL being proprietary to Wipro Limited is 'privileged' and 'confidential' and intended for use only by the individual or entity to which it is addressed. You are notified that any

[PHP] Abnormal behaviour with php

Hi ,    It z amazing behaviour...I am wondering how it is coming only for first time execution.   If I remove the two If conditions in authentication.php and if I execute then it is displaying the blank screen. And again if we replace those two if conditions and if you execute again

[PHP] how to get the calender

Hi, I want to get the calender displayed beside the input box. If user select a particular date from the calender after selection it should display the date in the input box along with the time stamp. Any help will be appreciated. Thanks in advance. -Balaji- **Disclaim

[PHP] HAPPY VALENTINES DAY

Hi friends, Wish you all A very Happy Valentines Day!!! May this Day bring in lots of Joy, Happiness, Success, Love May all your dreams come true Warm Regards , Balaji **Disclaimer

[PHP] IP <-> URL

rrent URL itself to test.php file. Thanks in advance -Balaji -Original Message- From: * R&zE: [mailto:[EMAIL PROTECTED]] Sent: Monday, February 11, 2002 3:13 PM To: Balaji Ankem Subject: IP <-> URL Hi there, I just found out I probably sent you the wrong answer to your q

[PHP] How to pass URL??

How to pass the current URL to this function? parse_url (string url) This function call is in calling file ... say some http://10.145.2.68/auto/test.php test.php contains the parse_url funcction. I want to pass the same URL to this function. Because IP address changes every time. Ple

[PHP] How to get IP address?

Hi friends, I would like to get or extract the IP address from the URL in to a variable. How can I do that? Any help very appreciable. Thanks in advance -Balaji **Disclaimer Information contained in

[PHP] File upload

Hi, I am trying to upload a file from remote machine. Could you please help out me. Thanks in advance -Balaji upload.html - FileUpload File:

[PHP] php.exe has generated some errors and will be closed by windows

Hi friends,   I am getting the problem everytime "php.exe has generated some errors and will be closed by windows".   I kept header function after completion of authentication to navigate to the corresponding page.   I am facing this problem every time. If I remove that header function once a

[PHP] no one can find solution to my problem??

r/Net/SMTP.php for required functions send and Mail_smtp. cheers -Balaji > - Original Message - > From: "Jon Haworth" <[EMAIL PROTECTED]> > To: "'Balaji Ankem'" <[EMAIL PROTECTED]> > Sent: Tuesday, January 08, 2002 4:17 PM

Re: [PHP] no one can find solution to my problem??

fully sent to [EMAIL PROTECTED]"; else echo "FAIL"; ?> - And the result was "Mail was successfully sent to mailto:[EMAIL PROTECTED]. I don't know what z happening.. Thanks in advance. -Balaji - Original Message - From: &quo

[PHP] no one can find solution to my problem??

August1973 ';   /* To send HTML mail, you can set the Content-type header. */$headers  = "MIME-Version: 1.0\r\n";$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";   /* additional headers */$headers .= "From: Balaji Ankem <[EMAIL PROTECTED]>\r\n&qu

[PHP] can u find error in php file?

  include_once('Mail/smtp.php');include_once('Net/SMTP.php');   # Replace 127.0.0.1 with another SMTP host if needed$smtp_session = new Mail_smtp(array('10.145.0.18', 25, TRUE, '', ''));$headers['Subject'] = 'Sample subject';$headers['Reply-To'] = '[EMAIL PROTECTED]';$headers['From'] = '[EMA

[PHP] Regarding mail function

Hi ,   My file name: bala.php ---   mail("[EMAIL PROTECTED]", "hi friend", "Hi, how are you? Expecting reply from you. -Bala");   ?>   for the above program I am getting the following warni

[PHP] How to open an existing Excel file(.xls) from PHP program

    Hi,         How to open an existing excel file(.xls) from PHP, and edit the contents of the particular cell.   Thanks in advance Regards Balaji     --- Information transmi

Re: [PHP] Help me to win the battle with browser's cache

Hi, me also faced many probs last 3 months back and i overcome that. solution - use session variables.. register login info as session vars and during logout unregister... This is the solution to u'r problem.. - All the best -Balaji - Original Message

[PHP] How to find the browser type in HTML or PERL??

Hi, Anybody know how to code in HTML or perl to find the browser say if { do this } else if { do this } Thanks and regards -Balaji -- Information tran

[PHP] interesting warning!!!

ut.. Warning: Wrong parameter count for session_unregister() in /www/imac/logout.php on line 4 Thanks and Regards -Balaji Ankem -- Information transmitted by this E-MAIL is p

[PHP] How to set the time for session??

Hi, i want to expire the session if user sits 15 minutes idle without doing anything. Then how can i set the time for session?? Thanks in advance Regards -Balaji ---

[PHP] prob with include file

Hi! same is working on windows but on Lynux giving the following problem.. Warning: Failed opening 'admin.php' for inclusion (include_path='/www/inc') in /www/imac/authentication.php on line 46 -- if ($row->user_type=='A') { file://clos

[PHP] problem in the small code

What is the problem with following code.. if ( $row!=0 ) { $res=mysql_fetch_object($result); if( $res->inv_status=="ASSIGNED") { echo "It is in assigned state. Please first return it and then change the status"; exit; } elseif( $res->inv_status=="AVAILABLE

[PHP] Problem regarding select boxes

Hi! friend,   I had one html form .   In that i had 5 inputs.   First  input is a select box.   If the selected item in first input is Mobile then only i want to display  second andthird input boxes. Otherwise i want to hide those two options.How can i endure that?Please give the solution

[PHP] Problem regarding select boxes

Hi! friend, I had one html form . In that i had 5 inputs. First option is a select box. If the selected item is Mobile then only i want to display second and third input boxes. Otherwise i want to hide those two options. How can i endure that? Please give the solution to this proble

[PHP] How to connect Excel as a database from mysql

Hi, I am generating a report in exel sheet. For this i am planing to use exel as a data base. can you send the statements to connect exel sheet as a database and relate queries. Thanks in advance. Regards Balaji -

[PHP] hi

Hi, what z wrong in this code?? > \">view source"; ?> >>> I am getting the following error Forbidden You don't have permission to access /< on this server. --- -

[PHP] how to pass authentication info to SMTP server

Hi Ramsus and Renze, I would like to implement sending an e-mail through SMTP server. Here my SMTP server needs authentication. How to pass the username and password to SMTP server?? Thanks in advance. Regards -Balaji

[PHP] how to pass authentication info to SMTP server

Hi friends, I would like to implement sending an e-mail through SMTP server. Here my SMTP server needs authentication. How to pass the username and password to SMTP server?? Thanks and regards -Balaji --

[PHP] warning on Installation of PHP on windows 98

Hi, while installing php on my windows 98 machine i got the following warning this came when i execute this C:\php>php.exe -i "Unable to load dynamic library 'c:\php/mysql.dll'-one of the library files needed to run this application can not be found" (that error is java script dialog warning)

[PHP] Re: How to implement e-mail facility?

>>>>>>>>>>>> And i want to change environment variables like HTTP_REFERER and SMTP and all.. I am in a position unable to change those vars. thanks in advance. Regards -Balaji - Original Message - From: Richard Lynch <[EMAIL PROTECTED]> To: Balaj

[PHP] How to implement e-mail facility?

Hi friend, I want to mail a user if he forget password . How to implement that. What are all the requirements. please see the following code. >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

[PHP] 2what will be the output for this pgm?

Hi friend, what will be the output for the following program? >> >>> For me it is printing the blank value. Thanks in advance Regards -Balaji

[PHP] what will be the output for this pgm?

Hi friend, what will be the output for the following program? >> >>> For me it is printing the blank value. Thanks in advance Regards -Balaji ---

[PHP] How to replicate a table in Mysql?

Hi friend, I want to replicate the table which is existed in database of Mysql. Thanks in advance. Regards -Balaji - Information transmitted by this E-MAIL is proprietary to

[PHP] How to get the referer value?

Hi! friend,          How to get the referer value in the PHP.(getHeader(Referer))   Thanks in advance. -Balaji   - Information transmitted by this E-MAIL is proprietary

[PHP] hi

Hi, Renze, I have one doubt in HTML. I should not ask this in this group. I don't have any alternative. Please consider this. How to increase the length of the select box. It is comming width as very less. I would like to increase that width. see the following code.. ISSUE Issuing by

Fw: [PHP] Help.

  first let me know about that exe file.   can u call that exe file in browser??? If yes can we give like http://path to exe//??input co-ords...   -Balaji - Original Message - From: rajarajeswari balasubramanian To: [EMAIL PROTECTED] Sent: Friday, August 17, 2001 12:09

Fw: [PHP] Re: prob with session start

eady sent in c:\www\authentication.php on line 40   Thanks and regards -Balaji - Original Message - From: Renze Munnik To: Balaji Ankem Cc: [EMAIL PROTECTED] Sent: Tuesday, August 14, 2001 2:26 PM Subject: Re: [PHP] Re: prob with session start I think I

Re: [PHP] Re: prob with session start

;)  { include('ordinary.php');     }  }     else  {   file://User does not exist or not authenticated.   echo 'Authorization Required.';   file://header( 'WWW-Authenticate: Basic realm="Private"' );   file://header( 'HTTP/1.0 401 Unauthorized' );   e

[PHP] prob with session start

Hi! friend,     I want to start session if authentication is succesfull means if he is a valid user. Then what i have to do Renze??   Thanks in advance.   With warm regards -Balaji - Original Message - From: Renze Munnik To: Balaji Ankem Cc: [EMAIL PROTECTED

Re: [PHP] plz check the warning message

    include('super.php');     }  else if ($row->user_type=='O')  { include('ordinary.php');     }  }     else  {   file://User does not exist or not authenticated.   echo 'Authorization Required.';   file://header( 'WWW-Authenticate: Bas

Re: [PHP] plz check the warning message

g the data again and getting session again.   Thanks and Regards -Balu     - Original Message - From: Renze Munnik To: Balaji Ankem Cc: [EMAIL PROTECTED] Sent: Friday, August 10, 2001 4:13 PM Subject: Re: [PHP] plz check the warning message On Fri, Aug 10, 20

  1   2   >