Thanks for your reply. I had actually made a mistake in the code. It looks
like this now:

        print "<a href=\"#\"
onClick=\"window.opener.document.order.".stripslashes($HTTP_GET_VARS['name']
).".value='$y-$m-$d';\">$d</a>";

How could I still use the id thing on this? I now use ' in the brakets as
well, if that helps any...

I'm not yours, so why should I be sincere about it,
Stephen Craton
Senior Executive Web Developer
Mophus.com, Inc.


----- Original Message ----- 
From: "Ford, Mike [LSS]" <[EMAIL PROTECTED]>
To: "'Stephen'" <[EMAIL PROTECTED]>; "PHP List"
<[EMAIL PROTECTED]>
Sent: Friday, June 06, 2003 4:22 AM
Subject: RE: [PHP] PHP/Javascript Help


> -----Original Message-----
> From: Stephen [mailto:[EMAIL PROTECTED]
> Sent: 05 June 2003 19:15
>
> Here's my javascript link code for each day of the month in
> the calendar script:
>
>         print "<a href=\"#\"
> onClick=\"window.opener.document.".$HTTP_GET_VARS['name'].".da
> te.value='$y-$m-$d';\">$d</a>";
>
> $HTTP_GET_VARS['name'] holds the text field name, ie
> delivery[3322ffds]. If I replace the name either order in the
> text field and as the variable I pass in the URL it works fine.

You need to make use of the JavaScript ['id'] identity with .id (see any
good JavaScript book for more on this), thus:

  print "<a href=\"#\"
  onClick=\"window.opener.document['" . $HTTP_GET_VARS['name'] .
"'].date.value='$y-$m-$d';\">$d</a>";


Cheers!

Mike

---------------------------------------------------------------------
Mike Ford,  Electronic Information Services Adviser,
Learning Support Services, Learning & Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Beckett Park, LEEDS,  LS6 3QS,  United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 283 2600 extn 4730      Fax:  +44 113 283 3211

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to