I'm working in an application using JS with ASP and MSQL. We use Remote
Scripting for real-time updating and reading the Database without reloading
a page or move to another page. It works very well. More details on this
one can be found at http://msdn.microsoft.com/scripting/

I guess it isn't very hard to make such a thing (and even simpler then MS'
one) for PHP. I hope so, 'cause I like to use it with my own PHP projects
too.

Greetinx Michaël Hompus


i think that u can't, b/c php is server side while JS is client site. u can
doSubmit() when building is changed, then php script get infomation and
response to browser.

Trong Phuc

> <script language=javascript>
> function changebuilding (which) {
>      sel_var = which.selectedIndex
>      <?
>        $sql_query = "select distinct room
>                      from general.room_info
>                      where building='$variable' group by level asc";
>
>        $sql_result = mysql_query($sql_query) or die (" Can't execute the
> query");
>
>        $i=0;
>        while ($row = mysql_fetch_array($result_sec_level))
>              print ("ar[".$i++."] = \"".$row[0]."\";\n");
>      ?>
>     for (i=0; i < ar.length; i++) {
>         option = new Option(ar[i])
>         document.myform.room.options[i]=option
>    }
> }
> </script>
> <body>
> <form name=myform>
> Building :   <select name=building onchange=changebuilding(this) >
>                 <option>1</option>
>                 <option>2</option>
>                 <option>3</option>
>              </select>
> Room :   <select name=room >
>          </select>
> </form>
> </body>
>
>
> I can pass the variable in building to $variable by submit button
> but I want to pass the sel_var variable to $variable and dynamic update
> the content in room.
>
> --
>
> phil Huynh
>



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to