klpang Posted September 27, 2007 Share Posted September 27, 2007 I have design a script. need to change the price while a package is choose. The price will be display in the text box. <SCRIPT LANGUAGE="JAVASCRIPT" SRC="./lib/jsrsClient.js"></SCRIPT> <SCRIPT LANGUAGE="JAVASCRIPT"> function getprice() { var f=document.wo; price=f.bbpackage.value; jsrsExecute("get_price.php","getprice",price); } </SCRIPT> <SELECT NAME="bbpackage" CLASS="selectbox" onchange="getprice()"> get_price.php <?php include("jsrsServer.php.inc"); jsrsDispatch( "getprice" ); function getprice($price) { $return_value=""; $dblink=mysql_connect("localhost","root","xxxxxxx"); mysql_select_db("xxxxx",$dblink); $query="select id,name from package where packageID=$price"; $query_result=mysql_query($query,$dblink) or die(mysql_error()); while($row=mysql_fetch_array($query_result,MYSQL_ASSOC)) $return_value.=$row["name"]."~".$row["id"]."|"; return $return_value; } May i know what wrong with the coding. Please advise. Quote Link to comment https://forums.phpfreaks.com/topic/70871-cant-pass-the-value-by-using-jsrs-scirpt/ Share on other sites More sharing options...
fenway Posted October 1, 2007 Share Posted October 1, 2007 What does the JS look like after the PHP is ruN/ Quote Link to comment https://forums.phpfreaks.com/topic/70871-cant-pass-the-value-by-using-jsrs-scirpt/#findComment-359163 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.