Open GoogleCodeExporter opened 9 years ago
i found the solution. for anyone wanted to know as well its a matter of
modifying your code.
http://stackoverflow.com/questions/4646967/how-to-add-a-dynamic-param
Original comment by sarme...@gmail.com
on 10 Jan 2011 at 7:51
[deleted comment]
if i am displaying the records from the database, so how can i access the value
of that variable.
i am using this
params: "name=<?php echo $row[2];?>",
but its not working. :(
Original comment by asifqua@gmail.com
on 12 Jan 2011 at 8:52
if you use the jquery code in the same php page, then it works.
here is the the sample code.
$("#Company_Name").editInPlace({
url: 'server.php',
bg_out: '#21281D',
show_buttons: true,
params: "name=<?php echo $row[3]; ?>",
saving_image: "images/loader.gif"
});
Original comment by asifqua@gmail.com
on 12 Jan 2011 at 9:43
Original issue reported on code.google.com by
sarme...@gmail.com
on 10 Jan 2011 at 12:11