Re: [PHP] Posting values of dynamically generated text fields at a time

2010-07-14 Thread Saravanan Murugesan
Hi is anybody there to help me out on this? Hi all, I am new to PHP and JS. I am adding new text fields using javascript and I have to save the values of these fields in database in single row. So, how should I post these values? So that I can save them in the db. Additional Info:

Re: [PHP] Posting values of dynamically generated text fields at a time

2010-07-14 Thread Saravanan Murugesan
Regards, Saravanan Murugesan Sr. Media Developer Hurix Systems Pvt. Ltd New No.34 / Old No.10, Taylors Road, Kilpauk, Chennai 600010. INDIA Phone: +91-044-42284888 ext.852 Mobile: +91-9940295951 - Original Message - From: Ashley Sheridan

[PHP] chm file for tutorial

2004-10-25 Thread murugesan
Hello all, I am new to PHP programming.. It will be nice to have a chm file on php tutorial. Can anyone point me to that location ? Also I would like to know how how to code the following line ? a href='http://www.geocities.com/murugesangct/index.html'Mail

RE: [PHP] chm file for tutorial

2004-10-25 Thread murugesan
Thanks Marek... a href='http://www.geocities.com/murugesangct/index.html'Mail http://www.geocities.com/murugesangct/index.html /a You just did. and got the answer from the tutorial... Regards, Dinesh_P_V -Original Message- From: Marek Kilimajer [mailto:[EMAIL

Re: [PHP] Whois request record in database

2003-09-12 Thread murugesan
= $REMOTE_ADDR; $insert=select * from $table; $db_query=mysql_db_query($db_name,$insert); if($name) { if($dbquery) { print(Done.); } else { print(Didn't work.); } } } ? -Murugesan - Original Message - From

Re: [PHP] Problem with HTML Text box and PHP variable.

2003-09-11 Thread murugesan
This will help you ?php $dins=Dinesh; echo input type=text name=dins class='textbox' value='$dins' ; ? -Murugesan - Original Message - From: Golawala, Moiz M (IndSys, GE Interlogix) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 11, 2003 10:35 PM Subject: [PHP

Re: [PHP] Escaping the ' character

2003-09-10 Thread murugesan
Try this ?php$url="";echo "a href=# asd/a";? HTH -Murugesan - Original Message - From: Todd Cary To: [EMAIL PROTECTED] Sent: Wednesday, September 10, 2003 10:57 PM Subject: [PHP] Escaping the " ' " character I need

Re: [PHP] Shell question.

2003-09-10 Thread murugesan
use ; at the end of print $sysnew = `echo $system | awk -F. '{ print; $1 }'` ; -Murugesan - Original Message - From: Sethi, Samir (IDS DMDS) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 11, 2003 12:31 AM Subject: [PHP] Shell question. Anyone had a chance to look

[PHP] Passing query parameter which has value ###

2003-09-08 Thread murugesan
I passed value main.php?name=$nameid=$idid1=$id1 to next page where $id has value ### In the next page I was not able to get the $id and $id1 values and I am able to get the two values $id1 and $name when I used main.php?name=$nameid1=$id1 What might be the problem? -Thanks regards, Murugesan

Re: [PHP] Problem Coding a Tutorial

2003-09-08 Thread murugesan
//nextpage.php do your db transactions here -Murugesan - Original Message - From: Stephen Tiano [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 08, 2003 3:05 PM Subject: [PHP] Problem Coding a Tutorial I found a new book for again starting out to learn PHP/MySQL Web App

Re: [PHP] Passing query parameter which has value ###

2003-09-08 Thread murugesan
Not at all. I tried it. When I see the properties of that page it is showing me http://172.16.1.193/main.php?name=murugeshid=#[EMAIL PROTECTED] but the actual value for id is ### -Murugesan - Original Message - From: Angelo Zanetti [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL

Re: [PHP] Passing query parameter which has value ###

2003-09-08 Thread murugesan
Thanks for the reply.It is working -Murugesan - Original Message - From: Chris Hayes [EMAIL PROTECTED] To: murugesan [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, September 08, 2003 5:15 PM Subject: Re: [PHP] Passing query parameter which has value ### At 13:04 8-9-03, you wrote

Re: [PHP] Persistent database connections in PHP

2003-09-05 Thread murugesan
Just use the same header. and in the next page use body onload=window.open(yourpage) ... Murugesan - Original Message - From: Cesar Aracena [EMAIL PROTECTED] To: 'Shivanischal' [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, September 05, 2003 11:27 AM Subject: RE: [PHP

Re: [PHP] Remove vars from memory?

2003-09-05 Thread murugesan
You must use unset() -Murugesan - Original Message - From: Robert Cummings [EMAIL PROTECTED] To: Scott Fletcher [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, September 05, 2003 10:25 PM Subject: Re: [PHP] Using rand() for 10 digit numbers It probably wraps the standard C

Re: [PHP] is there a php version with curl already integrated?

2003-09-04 Thread murugesan
Refer http://in2.php.net/curl -murugesan - Original Message - From: Chris [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 04, 2003 5:02 PM Subject: [PHP] is there a php version with curl already integrated? hello, i must admit, i'm quite a nub when it comes

Re: [PHP] vars between instantiate class...

2003-09-03 Thread murugesan
Pass the value $this-_loginAttempts to the same page, assign it to $this-_loginAttempts and then increment it. -Murugesan jsWalter [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I am trying to see how many times a person has tried to log in during a session. the login script

Re: [PHP] PHP Interview questions and how to pass parameters to .js files

2003-09-02 Thread murugesan
with param } --- How can I achieve this? -murugesan - Original Message - Binary search. I'd say I have too much time on my hands, but I don't. ?php $eggs = array(1,1,1,1,1,2,1,1,1,1,1,1); $eggs1_6 = array_slice($eggs, 0, 6); $eggs7_12 = array_slice($eggs, 6, 6

Re: [PHP] multiple db query

2003-09-02 Thread murugesan
I tried this and it is working well. I use 2 DB namely db1 and db2 Mysqluse db1; Mysqlselect vv.visitorname,aa.visitorname from db1.visitordetails vv, db2.visitordetails aa; -Murugesan - Original Message - From: Marek Kilimajer [EMAIL PROTECTED] To: Aris Santillan [EMAIL PROTECTED

Re: [PHP] register_globals

2003-09-02 Thread murugesan
Try restarting your apache. -murugesan - Original Message - From: Deependra b. Tandukar [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 10:09 AM Subject: [PHP] register_globals Hi, I have configured PHP 4.3.3 in which register_gloabals is set to be off. I

Re: [PHP] PHP Interview questions

2003-08-29 Thread murugesan
In a group of 12 eggs only one is having weight less or more. Can we have a program to find the egg, provided we have to weigh only three times with a weighing machine with two pans,without using weights. -murugesan - Original Message - From: Matt Matijevich [EMAIL PROTECTED] To: [EMAIL

Re: [PHP] problem with a mysql query with data from a form

2003-08-29 Thread murugesan
use $det=trim($det); then assign the $sql value. -murugesan - Original Message - From: Vincent Fievet [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 29, 2003 11:55 AM Subject: [PHP] problem with a mysql query with data from a form -Message d'origine- De : Vincent

Re: [PHP] beginner: remove the string after the first whitespace

2003-08-28 Thread murugesan
This code is working for me ?php $old=Dinesh Dinesh Dinesh Dinesh; $new=; for($i=0;$old[$i]!='';$i++) { $new=$new.$old[$i]; if($old[$i]==' ') break; } echo $new; ? -murugesan - Original Message - From: Andras Kende [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Sent

Re: [PHP] Cannot pass values from one page to another

2003-08-27 Thread Murugesan N
pass $uname without using query parameters. Thanks for the reply -murugesan - Original Message - From: [EMAIL PROTECTED] To: php mailing list [EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 11:24 AM Subject: Re: [PHP] Cannot pass values from one page to another Hi, Ok this is a major

[PHP] Session problem in back button

2003-08-26 Thread murugesan
Hello all, Now i have a problem in back button. After signing in when I click back button It goes to login page. But when I click the forward button it is going to the main page. How can I prevent this. -murugesan -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Session problem in back button

2003-08-26 Thread murugesan
the page even when I copy and paste URL in a new browser window. Seems like an essay :) Why is it so. Is that my previous method was correct or any mistakes I did? -murugesan - Original Message - From: Paul Fitzpatrick [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 26

Re: [PHP] determine how many checkboxes are selected.

2003-08-26 Thread murugesan
$i echo script language=JavaScript function $chkfun() { if(document.forms[0].$chkval.value=='off') document.forms[0].$chkval.value='on'; else document.forms[0].$chkval.value='off'; }/script; } and upon subbmitting the form you can determine the checked entries. -murugesan

Re: [PHP] MD5 System Password check with PHP

2003-08-26 Thread murugesan
First store the password in the DB as $passwd=md5($passwd) insert into table values( $passwd); get the user password and check by comparing if(md5($password)==$fetchedpasswdfromDB) { ... } -murugesan - Original Message - From: Chinmoy Barua [EMAIL PROTECTED] To: [EMAIL

[PHP] Cannot pass values from one page to another

2003-08-26 Thread murugesan
Hello all, I have passed a value from index.php?uid=one I got this value in next page(main.php) But from there I am not able to pass it to next page I used session_register('uid'); in main.php but in next page $uid is returning null Any solutions? -murugesan -- PHP General Mailing List

Re: [PHP] Cannot pass values from one page to another

2003-08-26 Thread murugesan
Thanks for the message. I looked into the manual. But it is not working. Ofcourse I used session_start in every pages. -murugesan - Original Message - From: Jay Blanchard [EMAIL PROTECTED] To: murugesan [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 5:23 PM Subject

[PHP] Passing values from one page to another

2003-08-25 Thread murugesan
echo $empid; ? In page 1 I am able to get the value 1 of empid. But in page 2 I am not able to get it. Any solutions -murugesan

Re: [PHP] mysql_connect error

2003-08-25 Thread murugesan
);; --- -murugesan - Original Message - From: Mjec [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 25, 2003 7:53 AM Subject: Re: [PHP] mysql_connect error on 25/08/2003 12:11 PM, John W. Holmes at [EMAIL PROTECTED] wrote: Mjec wrote: Hi, again this line

Re: [PHP] How to open random Flash page with hyperlink?

2003-08-25 Thread murugesan
this authentication and called the function header (Location: /main.php?empid=$empidpwd=$pwd); Actually when passing this URL the password appears in the address bar. How to over come this? It will be very much usefull if I get the answer. Thanks in advance -Murugesan

Re: [PHP] How to open random Flash page with hyperlink?

2003-08-25 Thread murugesan
Really thanks for the support. It worked well. -regards, Murugesan - Original Message - From: Cody Phanekham [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 25, 2003 11:06 AM Subject: RE: [PHP] How to open random Flash page with hyperlink? Murugesan, I'll assume your

[PHP] Unable to get the values in next page

2003-08-25 Thread murugesan
); - main.php - echo $failed;// this is null here - What might be the problem ? Thanks in advance, Murugesan. Murugesan, I'll assume your redirecting the user to main.php because (s)he has passed the authentication routine... in that case just store

Re: [PHP] RE: Unable to get the values in next page

2003-08-25 Thread murugesan
Thanks for the reply.Actually I don't know that I have to include the start_session in every page. I GOT it ATLAST. Regards -murugesan. - Original Message - From: Cody Phanekham [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 25, 2003 12:26 PM Subject: [PHP] RE: Unable

[PHP] Window.status message

2003-08-25 Thread murugesan
and then after moving the mouse apart from the link it displays the hai message in the status bar. What might be the problem? -murugesan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] window.status

2003-08-25 Thread murugesan
the URL in the status bar. How to remove the status? Any one there to help me? -Murugesan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] RE: Unable to get the values in next page

2003-08-25 Thread murugesan
I thought of including the script in all the files.Thanks for the message. Regards, Murugesan - Original Message - From: Cody Phanekham [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 25, 2003 12:50 PM Subject: RE: [PHP] RE: Unable to get the values in next page NP. You

Re: [PHP] Unable to get the values in next page

2003-08-25 Thread murugesan
Thanks for the help. I got it worked. The mistake I did was that I failed to call session_start() in the next page. -Murugesan - Original Message - From: Burhan [EMAIL PROTECTED] To: murugesan [EMAIL PROTECTED] Sent: Monday, August 25, 2003 3:29 PM Subject: Re: [PHP] Unable to get

Re: [PHP] Easy XML PHP tutorials ?????

2003-08-24 Thread murugesan
www.w3schools.com -murugesan - Original Message - From: Boaz Yahav [EMAIL PROTECTED] To: Joe Harman [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Sunday, August 24, 2003 1:09 AM Subject: RE: [PHP] Easy XML PHP tutorials ? Try this too : http://www.sitepoint.com/article/1165

[PHP] start_session()

2003-08-24 Thread murugesan
Can any one say what it the purpose of start_session() fuction -murugesan. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to open random Flash page with hyperlink?

2003-08-22 Thread murugesan
Thanks for the message. Can you please tell me how to do session authentication?. -murugesan - Original Message - From: Cody Phanekham [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 22, 2003 10:05 AM Subject: FW: [PHP] How to open random Flash page with hyperlink

Re: [PHP] How to open random Flash page with hyperlink?

2003-08-21 Thread murugesan
Hello some more changes param name=movie value=?php echo $value ? embed src=?php echo $value ?/embed -murugesan - Original Message - From: Cody Phanekham [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 22, 2003 9:32 AM Subject: RE: [PHP] How to open

Re: [PHP] Apache starting error

2003-08-20 Thread murugesan
Check this http://www.phpbuilder.com/mail/php-general/262/0811.php -murugesan - Original Message - From: Rikunj [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 11:53 AM Subject: [PHP] Apache starting error Hello all, I am new to this group please do

Re: [PHP] window.open(hai.php?id=one);

2003-08-19 Thread murugesan
I have made the value hidden. How can I retrieve it in the next page in php. -murugesan - Original Message - From: Martin Towell [EMAIL PROTECTED] To: 'murugesan' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 11:21 AM Subject: RE: [PHP] window.open(hai.php?id

[PHP] Problem in sending mail

2003-08-18 Thread murugesan
checked mail return type. It is also working well. But I am not recieveing mail. Any ideas? -Murugesan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] window.open(hai.php?id=one);

2003-08-18 Thread murugesan
Hello all, I need to pass a value from one page to another.This is done from a link from page 1 to page 2. In that I called a php file as window.open(hai.php?id=one); But I dont want ?id=one to be displayed in the address bar. How can I achieve this?. -murugesan. -- PHP General

[PHP] How to connect to DB

2003-08-16 Thread murugesan
') ; ? Also I restarted the apache. But it is still accessing the old DB. What are all the changes that I have to make. other than these changes. Regards, Murugesan. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] how to change index.php?passwd to index.php in the address bar

2003-08-14 Thread murugesan
address http://localhost/home.php?userid=user1 How can I remove the ?userid=user1 in the address bar. I used method = POST for a button to go to new page. That worked well. So with a link how can I achieve this. -Murugesan - Original Message - From: David Otton [EMAIL PROTECTED

Re: [PHP] php.ini configuration can we have two include_path in php.in file

2003-08-14 Thread murugesan
I am not able to locate the file you are referring to. Please do help me I am very much frustrated. -Murugesan - Original Message - From: Justin French [EMAIL PROTECTED] To: murugesan [EMAIL PROTECTED] Cc: PHP List [EMAIL PROTECTED] Sent: Thursday, August 14, 2003 2:29 PM Subject

[PHP] php.ini configuration can we have two include_path in php.in file

2003-08-14 Thread murugesan
in the php.ini file. -Murugesan. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP - MySQL Query...

2003-08-14 Thread murugesan
Try this, $result = mysql_query($query,$dbh); -Murugesan - Original Message - From: Jay Blanchard [EMAIL PROTECTED] To: Steven Kallstrom [EMAIL PROTECTED]; PHP List [EMAIL PROTECTED] Sent: Thursday, August 14, 2003 4:50 PM Subject: RE: [PHP] PHP - MySQL Query... [snip] $dbh

Re: [PHP] how to change index.php?passwd to index.php in the address bar

2003-08-14 Thread murugesan
Can you explain me in detail to use the post method. Thanks, Murugesan - Original Message - From: Peter James [EMAIL PROTECTED] To: murugesan [EMAIL PROTECTED] Cc: PHP List [EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 12:12 PM Subject: Re: [PHP] how to change index.php?passwd

Re: [PHP] What does - mean?

2003-08-14 Thread murugesan
This some thing like C++ this pointer. Actually $this refers to current class object pointer in C++. $this-vendor = $vendor; It seems that you could have defined vendor in a class which should have a field named vendor. Got it ? -murugesan - Original Message - From: James Johnson

[PHP] how to change index.php?passwd to index.php in the address bar

2003-08-14 Thread murugesan
Hello all, When go to a new page from login page the address bar has localhost/regsuccess.php?password=ASD I don't want the things that comes after ? in the URL How can I resolve this issue?. Thanks in advance, Murugesan -- PHP General Mailing List (http://www.php.net

Re: [PHP] how to change index.php?passwd to index.php in the address bar

2003-08-14 Thread murugesan
I used the post method in the form tag. But I am getting the following error Method Not Allowed The requested method POST is not allowed for the URL /products.html. Apache/1.3.19 Server at localhost Any one is there to reaolve my problem Regards, Murugesan. - Original Message - From

Re: [PHP] Clone of Hotmail,yahoo

2003-08-14 Thread murugesan
The page with TO CC BCC is in a frame (say frame1) Upon clicking the link TO we open a new window. After that u can fetch the users input and can open the frame1 with the users input as argument to the previous window. murugesan. - Original Message - From: Balaji Nallathambi