Jump to content

Can't pass the value by using JSRS scirpt


klpang

Recommended Posts

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.

 

Link to comment
https://forums.phpfreaks.com/topic/70871-cant-pass-the-value-by-using-jsrs-scirpt/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.