return sql command javascript code example
Example 1: return string from javascript function
<script>
function showName() {
var result;
result = addString('Hello', ' World');
document.write (result );
}
function addString(fName, lName) {
var val;
val = fName + lName;
return val;
}
</script>
<input type = "button" onclick = "showName()" value = "Result">
Example 2: js read mysql database
const config = {
"table" : "customers",
"limit" : "50",
"offset" : "0"
};
_POST_REQUEST("link-to-server/database.php", 'config=' + JSON.stringify(config), (response) => {
var data = JSON.parse(response);
});