Re: [PHP] Using javascript with php

2006-02-16 Thread Richard Lynch
getElementByID() On Wed, February 15, 2006 4:10 pm, Sugrue, Sean wrote: > To all, > > I have a check box input which I assign an array to the name. I want > to > pass the array to a javascript and based on a certain criteria check > the box. I use the syntax: > formname.elements['array[]'][index

Re: [PHP] Using javascript with php

2006-02-15 Thread Curt Zirzow
On Wed, Feb 15, 2006 at 05:10:53PM -0500, Sugrue, Sean wrote: > To all, > > I have a check box input which I assign an array to the name. I want to > pass the array to a javascript and based on a certain criteria check > the box. I use the syntax: formname.elements['array[]'][index].checked= > tru

[PHP] Using javascript with php

2006-02-15 Thread Sugrue, Sean
To all, I have a check box input which I assign an array to the name. I want to pass the array to a javascript and based on a certain criteria check the box. I use the syntax: formname.elements['array[]'][index].checked= true. It works with IE but since my buddy added an html validator to a config

Re: [PHP] Using javascript function from php

2005-03-11 Thread Richard Lynch
> I am just learning php, and am currently converting some jsp pages to php. > I used the follwing code in jsp to toggle between two images Instead of driving yourself nuts with echo and quote and backslash and semi-colon quote semi-colon, just do like this: > > function toggle(imagename,src1,

[PHP] Using javascript function from php

2005-03-10 Thread b
Hi, I am just learning php, and am currently converting some jsp pages to php. I used the follwing code in jsp to toggle between two images
function toggle(imagename,src1,src2){
if(document.images && document.images[imagename])
{
image1=new Image;

RE: [PHP] using javascript within php

2005-03-07 Thread Jay Blanchard
[snip] I want to set focus on a text area with javascript if the entry by the user is not what I want. if (isset($submitted){ if(empty($name)) { $fname_error = " *Please Enter your firstname or initial"; //the code to set focus to the textbox should go here } [/snip] if(empty($name)) { $fname_e

Re: [PHP] using javascript within php

2005-03-07 Thread John Nichel
Ross Hulford wrote: PHP == Server Side HTML/JavaScript == Client Side -- John C. Nichel ÜberGeek KegWorks.com 716.856.9675 [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] using javascript within php

2005-03-07 Thread Ross Hulford
I want to set focus on a text area with javascript if the entry by the user is not what I want. This is what i have so far. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Using JavaScript variables in PHP

2003-11-21 Thread Larry_Li
in your_php_file.php, try "select * from somedatabase where field=$id" "Mike Knittel" <[EMAIL PROTECTED]> 11/20/2003 11:45 PM To: [EMAIL PROTECTED] cc: Subject:[PHP] Using JavaScript variables in PHP How does one g

Re: [PHP] Using JavaScript variables in PHP

2003-11-20 Thread John Nichel
Mike Knittel wrote: How does one go about using a JavaScript variable with PHP code. I have a function in JavaScript that takes a single input parameter (ID). I want to use this ID variable as the value on the where clause of a database query. Example: "select * from somedatabase where field=ID"

Re: [PHP] Using JavaScript variables in PHP

2003-11-20 Thread Mike Migurski
>How does one go about using a JavaScript variable with PHP code. I have >a function in JavaScript that takes a single input parameter (ID). I >want to use this ID variable as the value on the where clause of a >database query. > >Example: "select * from somedatabase where field=ID" > >Can this

[PHP] Using JavaScript variables in PHP

2003-11-20 Thread Mike Knittel
How does one go about using a JavaScript variable with PHP code. I have a function in JavaScript that takes a single input parameter (ID). I want to use this ID variable as the value on the where clause of a database query. Example: "select * from somedatabase where field=ID" Can this be done,

Re: [PHP] Using Javascript

2002-07-27 Thread Zoltan Konyves
Hello Uma, Monday, July 22, 2002, 8:09:44 AM, you wrote: UST> Hello, UST> I need to display a value on the text box during onClick event where the UST> data is fetched from the database..I have given the code like this but it UST> is giving unterminated string constant.. UST> "); UST> Can

[PHP] Using Javascript

2002-07-21 Thread Uma Shankari T.
Hello, I need to display a value on the text box during onClick event where the data is fetched from the database..I have given the code like this but it is giving unterminated string constant.. "); Can anyone please tell me how to solve this ... Thanks & Regards, Uma -- PHP General M