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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.