Re:

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]



on 6/15/02 4:37 AM, dharm_shankar@xxxxxxxxxxxxxx purportedly said:

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



[Index of Archives]     [Postgresql General]     [Postgresql Admin]     [PHP Users]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Databases]     [Yosemite Backpacking]     [Postgresql Jobs]

  Powered by Linux