Re:

From: Chris <csmith(at)squiz(dot)net>
To: Postgres-PHP <pgsql-php(at)postgresql(dot)org>
Subject: Re:
Date: 2002-06-16 22:52:21
Message-ID: 5.1.0.14.0.20020617085036.03679720@cooee.cybersydney.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php


> > Hi
> >
> > Sorry.But again i describe what i want.I want to receive(In php
> > code because i want to use this value in sql statement.) value of
> > the variable l2 Within script tag.
> >
> > <script>
> >
> > function ch(list)
> > {
> > var l2;
> > l2=list.option.text;
> > //i want to send the value of l2 in php file/code.
> > }
> > </script>
> >
> > <html>
> > <select name="dd" OnChange="ch(this);">
> > <option>dd</option>
> > <option>www</option>
> > <option>ww</option>
> > <option>dsfd</option>
> > </select>
> > </html>
> > If u have solution then send me as soon as possible.Also tell me
> > is any method in php for event handle.
> > dharm.
>
>PHP is a server-side only scripting language, so JavaScript and PHP cannot
>interact except by making calls to the server. So you would either need to
>enclose the <SELECT> in a <FORM>, with OnChange="submit();", or call
>submit() in ch(), or make a simple GET request: location.href='/url?dd=' +
>l2 in ch().
>
>Keary Suska
>Esoteritech, Inc.
>"Leveraging Open Source for a better Internet"

and you also need a value for the options. like this: <option
value="dd">dd</option> otherwise the form will return nothing.

-----------------
Chris Smith
http://www.squiz.net/

In response to

  • Re: at 2002-06-16 17:55:24 from Keary Suska

Browse pgsql-php by date

  From Date Subject
Next Message Alxander A. Kapralov 2002-06-17 10:17:30 help !!!
Previous Message Keary Suska 2002-06-16 17:55:24 Re: