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

[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] Help required on cookies

2002-10-02 Thread Balaji Ankem
:[EMAIL PROTECTED]] 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

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: ? print_r($_COOKIE); ? It is giving error saying call to undefined function _r(); That's weird. Maybe you have a space between print and _r? The function

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

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

[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

RE: [PHP] Problem with implode() function

2002-07-16 Thread Balaji Ankem
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(,, $checkb); echo $array.'\n'; $result = mysql_query(DELETE FROM temp

[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

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: HTML HEAD TITLEMy First PHP

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 php.ini. If you

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

[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). = html head script

[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. html head script language=javascript function checkall() { var n=0,i=document.form1.OptionList.length;

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

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

2002-07-03 Thread Balaji Ankem
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: input type=checkbox name=whatever value=something HTH, ---John Holmes... PS: It might help if you actually try to do something yourself and then ask

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

2002-07-02 Thread Balaji Ankem
BELOW TO USE YOUR OWN //ADDRESS, NAME and DATA FILENAME //THE DATA FILE MUST ALREADY EXIST AND BE WORLD WRITEABLE $webweaver = [EMAIL PROTECTED]; $wwname = Balaji Ankem; $filename = visitors.dat; if (file_exists ($filename)) { $user_name=Ramesh; $user_mail=[EMAIL PROTECTED]; mail($webweaver,Visitor

[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

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

2002-07-02 Thread Balaji Ankem
, NAME and DATA FILENAME //THE DATA FILE MUST ALREADY EXIST AND BE WORLD WRITEABLE $webweaver = [EMAIL PROTECTED]; $wwname = Balaji Ankem; $filename = visitors.dat; if (file_exists ($filename)) { $user_name=Ramesh; $user_mail=[EMAIL PROTECTED]; mail($webweaver,Visitor to PHP Example Form page

[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

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

2002-07-02 Thread Balaji Ankem
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 greatly appreciated. Did you

RE: [PHP] uploading a file

2002-07-01 Thread Balaji Ankem
Upload.html === !DOCTYPE html public -//w3c//dtd html 4.0 transitional//en HTML TITLE FileUpload /TITLE head script language=Javascript function check() { document.upload.method = POST;

RE: [PHP] Problem with postfield elements

2002-06-13 Thread Balaji Ankem
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:18, Balaji Ankem wrote: Hi friend

RE: [PHP] Problem with postfield elements

2002-06-13 Thread Balaji Ankem
To: 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, but there is a reason

[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 = !DOCTYPE html public -//w3c//dtd html 4.0 transitional//en html head SCRIPT

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

2002-05-29 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 there any

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

2002-05-29 Thread Balaji Ankem
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 URL. But no use. Again

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

RE: [PHP] Can someone check this mysql code

2002-05-19 Thread Balaji Ankem
Try this.. ?php $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, 2002

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

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

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 we have can u give the syntax!!1 Thanks

[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

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

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

2002-03-19 Thread Balaji Ankem
)? 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 .. Error: php.exe has

[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] Hi! Is there any equivalent function with header?

2002-03-19 Thread Balaji Ankem
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, Balaji Ankem wrote: Hi

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 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 === ?php // Connect to MySQL $connection = mysql_connect( 'localhost',

[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 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 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.(AB) 2. I have X to Y and I want to check this range should not match with A to B. How can I check this? Ex: 1) A=4 B=8 Totally 4 cases

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

2002-03-12 Thread Balaji Ankem
Title: Message Hi 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=!DOCTYPE html public "-//w3c//dtd html 4.0

[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

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 DD/MM/

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()

[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

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... Hi

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, I have stored the date and time

RE: [PHP] Random number Question

2002-03-12 Thread Balaji Ankem
Try Now: form action=number.php method=post The computer has picked a number between 1 and 10. Guess the number and you win!BR Enter your guess: input type=text name=guess value= size=3 INPUT TYPE=submit VALUE=Submit my number NAME=submit /form -Original Message- From: Jennifer Downey

[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..=html head script language="Javascript"function check(){ var a;

[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] Can anybody help me?

2002-03-07 Thread Balaji Ankem
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] Anybody have the script for getting date from the user and validating it?

2002-03-07 Thread Balaji Ankem
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

Re: [PHP] Can anybody help me?

2002-03-07 Thread Balaji Ankem
. 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] Is it correct having number of forms in the same html page?

2002-03-04 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] Abnormal behaviour with php

2002-02-28 Thread Balaji Ankem
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 then it

[PHP] how to get the calender

2002-02-27 Thread Balaji Ankem
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-

[PHP] HAPPY VALENTINES DAY

2002-02-13 Thread Balaji Ankem
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] How to get IP address?

2002-02-11 Thread Balaji Ankem
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

[PHP] How to pass URL??

2002-02-11 Thread Balaji Ankem
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.

[PHP] IP - URL

2002-02-11 Thread Balaji Ankem
URL itself to test.php file. Thanks in advance -Balaji -Original Message- From: * RzE: [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 question. What I sent

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

2002-01-25 Thread Balaji Ankem
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 and

[PHP] can u find error in php file?

2002-01-08 Thread Balaji Ankem
?php 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'] =

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

2002-01-08 Thread Balaji Ankem
* additional headers */$headers .= "From: Balaji Ankem [EMAIL PROTECTED]\r\n"; $headers .= "Cc: [EMAIL PROTECTED]\r\n";$headers .= "Bcc: [EMAIL PROTECTED]\r\n";$headers['User']='bankem';$headers['Password']='narayana'; /* and now mail it */mail($to, $subject, $messag

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

2002-01-08 Thread Balaji Ankem
to mailto:[EMAIL PROTECTED]. I don't know what z happening.. Thanks in advance. -Balaji - Original Message - From: Jon Haworth [EMAIL PROTECTED] To: 'Balaji Ankem' [EMAIL PROTECTED] Sent: Tuesday, January 08, 2002 3:35 PM Subject: RE: [PHP] no one can find solution to my problem?? How have

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

2002-01-08 Thread Balaji Ankem
- From: Jon Haworth [EMAIL PROTECTED] To: 'Balaji Ankem' [EMAIL PROTECTED] Sent: Tuesday, January 08, 2002 4:17 PM Subject: RE: [PHP] no one can find solution to my problem?? Do I get to see the class then? It's hard to see what this line is doing: $smtp_session = new Mail_smtp(array

[PHP] Regarding mail function

2002-01-07 Thread Balaji Ankem
Hi , My file name: bala.php --- ?phpmail("[EMAIL PROTECTED]", "hi friend", "Hi, how are you? Expecting reply from you. -Bala"); ? for the above program I am getting the following

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

2001-11-12 Thread Balaji Ankem
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

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

2001-09-21 Thread Balaji Ankem
Hi, Anybody know how to code in HTML or perl to find the browser say if Iexplore { do this } else if Netscape { do this } Thanks and regards -Balaji --

[PHP] interesting warning!!!

2001-09-20 Thread Balaji Ankem
() in /www/imac/logout.php on line 4 Thanks and Regards -Balaji Ankem -- Information transmitted by this E-MAIL is proprietary to Wipro and/or its Customers

[PHP] prob with include file

2001-09-19 Thread Balaji Ankem
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') {

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

2001-09-19 Thread Balaji Ankem
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] Problem regarding select boxes

2001-09-11 Thread Balaji Ankem
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

[PHP] Problem regarding select boxes

2001-09-11 Thread Balaji Ankem
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 to this

[PHP] problem in the small code

2001-09-11 Thread Balaji Ankem
What is the problem with following code.. if ( $row!=0 ) { $res=mysql_fetch_object($result); if( $res-inv_status==ASSIGNED) { echo h2It is in assigned state. Please first return it and then change the status/h2; exit; } elseif( $res-inv_status==AVAILABLE)

[PHP] hi

2001-09-10 Thread Balaji Ankem
Hi, what z wrong in this code?? ?php echo a href=\?php show_source('source.php')?\view source/abr/br/; ? I am getting the following error Forbidden You don't have permission to access / on this server. --- -

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

2001-09-10 Thread Balaji Ankem
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] warning on Installation of PHP on windows 98

2001-09-07 Thread Balaji Ankem
Hi, while installing php on my windows 98 machine i got the following warning this came when i execute this C:\phpphp.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] how to pass authentication info to SMTP server

2001-09-07 Thread Balaji Ankem
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] how to pass authentication info to SMTP server

2001-09-07 Thread Balaji Ankem
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 implement e-mail facility?

2001-09-06 Thread Balaji Ankem
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 $user_name=Balaji Ankem; $user_mail=[EMAIL PROTECTED]; mail($user_mail,Thanks for visiting,Dear $user_name,\n We appreciate your visit

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

2001-09-06 Thread Balaji Ankem
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: Balaji Ankem [EMAIL PROTECTED] Sent: Friday, September 07, 2001 7:43 AM Subject

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

2001-09-05 Thread Balaji Ankem
Hi friend, what will be the output for the following program? ?php $foo=$HTTP_SERVER_VARS[HTTP_REFERER]; echo $foo; ? For me it is printing the blank value. Thanks in advance Regards -Balaji

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

2001-09-05 Thread Balaji Ankem
Hi friend, what will be the output for the following program? ?php $foo=$HTTP_SERVER_VARS[HTTP_REFERER]; echo $foo; ? For me it is printing the blank value. Thanks in advance Regards -Balaji

[PHP] How to replicate a table in Mysql?

2001-09-04 Thread Balaji Ankem
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

[PHP] How to get the referer value?

2001-09-03 Thread Balaji Ankem
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 to Wipro Limited

[PHP] hi

2001-09-01 Thread Balaji Ankem
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.. BODY

Fw: [PHP] Help.

2001-08-17 Thread Balaji Ankem
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

Re: [PHP] Re: prob with session start

2001-08-14 Thread Balaji Ankem
meta http-equiv="Expires" CONTENT="0" meta http-equiv="Cache-Control" CONTENT="no-cache" meta http-equiv="Pragma" CONTENT="no-cache" /HEAD BODY background="nightsky.gif" text="white" p cente

Fw: [PHP] Re: prob with session start

2001-08-14 Thread Balaji Ankem
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] plz check the warning message

2001-08-13 Thread Balaji Ankem
t;Private"' );file://header( 'HTTP/1.0 401 Unauthorized' );exit; } ? Thanks and regards -Balaji - Original Message - From: Renze Munnik To: Balaji Ankem Cc: [EMAIL PROTECTED] Sent: Friday, August 10, 2001 5:41 PM Subject: Re: [PHP] plz check the warning

[PHP] prob with session start

2001-08-13 Thread Balaji Ankem
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] Sent

[PHP] problem with session start

2001-08-10 Thread Balaji Ankem
Hi! friend, i got the following error when i am goint to start a session. This is the file. and i got the following errors. Warning: open(/tmp\sess_4a3f421e3a28de6801941743c0632862, O_RDWR) failed: m (2) in c:\www\login.php on line 2Warning:

Re: [PHP] problem with session start

2001-08-10 Thread Balaji Ankem
Hi Andrew, Thankyou now it is working well. I would like to close the session after clicking logout button. How to do? Thanks inadvance. Regards -Balaji - Original Message - From: Andrew Braund To: Balaji Ankem Sent: Friday, August 10, 2001 1:45 PM Subject: RE

[PHP] again session doubt

2001-08-10 Thread Balaji Ankem
Prabudy To: Balaji Ankem Sent: Friday, August 10, 2001 12:38 PM Subject: Re: Help required on creating session say you have a form that input the username in the top of the file before the html just put the ? session_start

  1   2   >