Triggering database calls on button click in oracle using php
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am new to php and have two things I am trying to accomplish with this post. The first issue I am trying to resolve is to trigger a database call on a button click. I have read a few things using ajax and jquery but not sure how I would implement it in my code. Currently the code is loading hard coded values from a sql query on page load. I would like to make the request on button click after page load. The second issue is I need to assign a variable inside a variable in the sql query. I have a start and end date that needs to be assigned to a variable upon selection. I was planning on using bootstraps built in date picker but I am not sure if that is the best method.
<?php
error_reporting(-1);
ini_set('display_errors', 'On');
// Include database connection
include 'sample.sql';
$conn = oci_connect('');
// SQL query to interact with info from our database
$conn = oci_connect('');
$stid = oci_parse($conn, $sql);
if( !oci_execute($stid) ) {
$e = oci_error();
echo htmlentities($e['message'], ENT_QUOTES);
}
$i = 0;
// Establish the output variable
$dyn_table = '<table border="1" cellpadding="8">';
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
$id = $row["C_NUMBER"] . '</td>';
$description= $row["BRIEF_DESCRIPTION"] . '</td>';
$description= $row["PLANNED_START"] . '</td>';
$description= $row["PLANNED_END"] . '</td>';
$description= $row["SERVER_RECYCLE_FMR"] . '</td>';
//$description= $row["RECYCLE_FMR"] . '</td>';"] . '</td>';
$description= $row["ORIGINAL_OPERATOR"] . '</td>';
$description= $row["IMPL_GRP_FMR"] . '</td>';
$description= $row["SEVERITY"] . '</td>';
//$description= $row["RELATED_RECORD_IM"] . '</td>';
//$description= $row["RISK"] . '</td>';
//$description= $row["CLOSING_COMMENTS"] . '</td>';
//$description= $row["COMPLETION_CODE"] . '</td>';
//$description= $row["REQUEST_DEPT"] . '</td>';
//$description= $row["REQUEST_TYPE_FMR"] . '</td>';
//$description= $row["CATEGORY"] . '</td>';
//$description= $row["CHG_TYPE_FMR"] . '</td>';
$description= $row["STATUS"] . '</td>';
$description= $row["APPROVAL_STATUS"] . '</td>';
//$description= $row["ENV_CODE_FMR"] . '</td>';
//$description= $row["ENVIRONMENT_DETAILS"] . '</td>';
$description= $row["OPENED_BY_CORP_ID"] . '</td>';
//$description= $row["REQUESTED_BY_CORP_ID"] . '</td>';
//$description= $row["DIR_CI_NETWORK_NAME"] . '</td>';
//$description= $row["INDIRECT_CI_NETWORK_NAME"] . '</td>';
$description= $row["PPMCID"] . '</td>';
//$description= $row["INIT_BU_CODE"] . '</td>';
if ($i % 3 == 0) {
$dyn_table .= '<tr><td>' . $row["C_NUMBER"] . '</td>';
$dyn_table .= '<td>' . $row["BRIEF_DESCRIPTION"] . '</td>';
$dyn_table .= '<td>' . $row["PLANNED_START"] . '</td>';
$dyn_table .= '<td>' . $row["PLANNED_END"] . '</td>';
$dyn_table .= '<td>' . $row["SERVER_RECYCLE_FMR"] . '</td>';
// $dyn_table .= '<td>' . $row["RECYCLE_FMR"] . '</td>';"] . '</td>';
$dyn_table .= '<td>' . $row["ORIGINAL_OPERATOR"] . '</td>';
$dyn_table .= '<td>' . $row["IMPL_GRP_FMR"] . '</td>';
$dyn_table .= '<td>' . $row["SEVERITY"] . '</td>';
// $dyn_table .= '<td>' . $row["RELATED_RECORD_IM"] . '</td>';
// $dyn_table .= '<td>' . $row["RISK"] . '</td>';
// $dyn_table .= '<td>' . $row["CLOSING_COMMENTS"] . '</td>';
// $dyn_table .= '<td>' . $row["COMPLETION_CODE"] . '</td>';
// $dyn_table .= '<td>' . $row["REQUEST_DEPT"] . '</td>';
// $dyn_table .= '<td>' . $row["REQUEST_TYPE_FMR"] . '</td>';
// $dyn_table .= '<td>' . $row["CATEGORY"] . '</td>';
// $dyn_table .= '<td>' . $row["CHG_TYPE_FMR"] . '</td>';
$dyn_table .= '<td>' . $row["STATUS"] . '</td>';
$dyn_table .= '<td>' . $row["APPROVAL_STATUS"] . '</td>';
// $dyn_table .= '<td>' . $row["ENV_CODE_FMR"] . '</td>';
// $dyn_table .= '<td>' . $row["ENVIRONMENT_DETAILS"] . '</td>';
$dyn_table .= '<td>' . $row["OPENED_BY_CORP_ID"] . '</td>';
// $dyn_table .= '<td>' . $row["REQUESTED_BY_CORP_ID"] . '</td>';
// $dyn_table .= '<td>' . $row["DIR_CI_NETWORK_NAME"] . '</td>';
// $dyn_table .= '<td>' . $row["INDIRECT_CI_NETWORK_NAME"] . '</td>';
$dyn_table .= '<td>' . $row["PPMCID"] . '</td>';
// $dyn_table .= '<td>' . $row["INIT_BU_CODE"] . '</td>';
}
$i++;
}
$dyn_table .= '</tr></table>';
oci_close($conn);
?>
<html>
<body>
<h3>CM Dashboard</h3>
<!-- Execute database query on button click -->
<!-- <input type="submit" value="<?php echo oci_execute($stid); ?>" /> -->
<!--Return Results in Table -->
<?php echo $dyn_table; ?>
</body>
</html>
php jquery ajax oracle
add a comment |
I am new to php and have two things I am trying to accomplish with this post. The first issue I am trying to resolve is to trigger a database call on a button click. I have read a few things using ajax and jquery but not sure how I would implement it in my code. Currently the code is loading hard coded values from a sql query on page load. I would like to make the request on button click after page load. The second issue is I need to assign a variable inside a variable in the sql query. I have a start and end date that needs to be assigned to a variable upon selection. I was planning on using bootstraps built in date picker but I am not sure if that is the best method.
<?php
error_reporting(-1);
ini_set('display_errors', 'On');
// Include database connection
include 'sample.sql';
$conn = oci_connect('');
// SQL query to interact with info from our database
$conn = oci_connect('');
$stid = oci_parse($conn, $sql);
if( !oci_execute($stid) ) {
$e = oci_error();
echo htmlentities($e['message'], ENT_QUOTES);
}
$i = 0;
// Establish the output variable
$dyn_table = '<table border="1" cellpadding="8">';
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
$id = $row["C_NUMBER"] . '</td>';
$description= $row["BRIEF_DESCRIPTION"] . '</td>';
$description= $row["PLANNED_START"] . '</td>';
$description= $row["PLANNED_END"] . '</td>';
$description= $row["SERVER_RECYCLE_FMR"] . '</td>';
//$description= $row["RECYCLE_FMR"] . '</td>';"] . '</td>';
$description= $row["ORIGINAL_OPERATOR"] . '</td>';
$description= $row["IMPL_GRP_FMR"] . '</td>';
$description= $row["SEVERITY"] . '</td>';
//$description= $row["RELATED_RECORD_IM"] . '</td>';
//$description= $row["RISK"] . '</td>';
//$description= $row["CLOSING_COMMENTS"] . '</td>';
//$description= $row["COMPLETION_CODE"] . '</td>';
//$description= $row["REQUEST_DEPT"] . '</td>';
//$description= $row["REQUEST_TYPE_FMR"] . '</td>';
//$description= $row["CATEGORY"] . '</td>';
//$description= $row["CHG_TYPE_FMR"] . '</td>';
$description= $row["STATUS"] . '</td>';
$description= $row["APPROVAL_STATUS"] . '</td>';
//$description= $row["ENV_CODE_FMR"] . '</td>';
//$description= $row["ENVIRONMENT_DETAILS"] . '</td>';
$description= $row["OPENED_BY_CORP_ID"] . '</td>';
//$description= $row["REQUESTED_BY_CORP_ID"] . '</td>';
//$description= $row["DIR_CI_NETWORK_NAME"] . '</td>';
//$description= $row["INDIRECT_CI_NETWORK_NAME"] . '</td>';
$description= $row["PPMCID"] . '</td>';
//$description= $row["INIT_BU_CODE"] . '</td>';
if ($i % 3 == 0) {
$dyn_table .= '<tr><td>' . $row["C_NUMBER"] . '</td>';
$dyn_table .= '<td>' . $row["BRIEF_DESCRIPTION"] . '</td>';
$dyn_table .= '<td>' . $row["PLANNED_START"] . '</td>';
$dyn_table .= '<td>' . $row["PLANNED_END"] . '</td>';
$dyn_table .= '<td>' . $row["SERVER_RECYCLE_FMR"] . '</td>';
// $dyn_table .= '<td>' . $row["RECYCLE_FMR"] . '</td>';"] . '</td>';
$dyn_table .= '<td>' . $row["ORIGINAL_OPERATOR"] . '</td>';
$dyn_table .= '<td>' . $row["IMPL_GRP_FMR"] . '</td>';
$dyn_table .= '<td>' . $row["SEVERITY"] . '</td>';
// $dyn_table .= '<td>' . $row["RELATED_RECORD_IM"] . '</td>';
// $dyn_table .= '<td>' . $row["RISK"] . '</td>';
// $dyn_table .= '<td>' . $row["CLOSING_COMMENTS"] . '</td>';
// $dyn_table .= '<td>' . $row["COMPLETION_CODE"] . '</td>';
// $dyn_table .= '<td>' . $row["REQUEST_DEPT"] . '</td>';
// $dyn_table .= '<td>' . $row["REQUEST_TYPE_FMR"] . '</td>';
// $dyn_table .= '<td>' . $row["CATEGORY"] . '</td>';
// $dyn_table .= '<td>' . $row["CHG_TYPE_FMR"] . '</td>';
$dyn_table .= '<td>' . $row["STATUS"] . '</td>';
$dyn_table .= '<td>' . $row["APPROVAL_STATUS"] . '</td>';
// $dyn_table .= '<td>' . $row["ENV_CODE_FMR"] . '</td>';
// $dyn_table .= '<td>' . $row["ENVIRONMENT_DETAILS"] . '</td>';
$dyn_table .= '<td>' . $row["OPENED_BY_CORP_ID"] . '</td>';
// $dyn_table .= '<td>' . $row["REQUESTED_BY_CORP_ID"] . '</td>';
// $dyn_table .= '<td>' . $row["DIR_CI_NETWORK_NAME"] . '</td>';
// $dyn_table .= '<td>' . $row["INDIRECT_CI_NETWORK_NAME"] . '</td>';
$dyn_table .= '<td>' . $row["PPMCID"] . '</td>';
// $dyn_table .= '<td>' . $row["INIT_BU_CODE"] . '</td>';
}
$i++;
}
$dyn_table .= '</tr></table>';
oci_close($conn);
?>
<html>
<body>
<h3>CM Dashboard</h3>
<!-- Execute database query on button click -->
<!-- <input type="submit" value="<?php echo oci_execute($stid); ?>" /> -->
<!--Return Results in Table -->
<?php echo $dyn_table; ?>
</body>
</html>
php jquery ajax oracle
add a comment |
I am new to php and have two things I am trying to accomplish with this post. The first issue I am trying to resolve is to trigger a database call on a button click. I have read a few things using ajax and jquery but not sure how I would implement it in my code. Currently the code is loading hard coded values from a sql query on page load. I would like to make the request on button click after page load. The second issue is I need to assign a variable inside a variable in the sql query. I have a start and end date that needs to be assigned to a variable upon selection. I was planning on using bootstraps built in date picker but I am not sure if that is the best method.
<?php
error_reporting(-1);
ini_set('display_errors', 'On');
// Include database connection
include 'sample.sql';
$conn = oci_connect('');
// SQL query to interact with info from our database
$conn = oci_connect('');
$stid = oci_parse($conn, $sql);
if( !oci_execute($stid) ) {
$e = oci_error();
echo htmlentities($e['message'], ENT_QUOTES);
}
$i = 0;
// Establish the output variable
$dyn_table = '<table border="1" cellpadding="8">';
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
$id = $row["C_NUMBER"] . '</td>';
$description= $row["BRIEF_DESCRIPTION"] . '</td>';
$description= $row["PLANNED_START"] . '</td>';
$description= $row["PLANNED_END"] . '</td>';
$description= $row["SERVER_RECYCLE_FMR"] . '</td>';
//$description= $row["RECYCLE_FMR"] . '</td>';"] . '</td>';
$description= $row["ORIGINAL_OPERATOR"] . '</td>';
$description= $row["IMPL_GRP_FMR"] . '</td>';
$description= $row["SEVERITY"] . '</td>';
//$description= $row["RELATED_RECORD_IM"] . '</td>';
//$description= $row["RISK"] . '</td>';
//$description= $row["CLOSING_COMMENTS"] . '</td>';
//$description= $row["COMPLETION_CODE"] . '</td>';
//$description= $row["REQUEST_DEPT"] . '</td>';
//$description= $row["REQUEST_TYPE_FMR"] . '</td>';
//$description= $row["CATEGORY"] . '</td>';
//$description= $row["CHG_TYPE_FMR"] . '</td>';
$description= $row["STATUS"] . '</td>';
$description= $row["APPROVAL_STATUS"] . '</td>';
//$description= $row["ENV_CODE_FMR"] . '</td>';
//$description= $row["ENVIRONMENT_DETAILS"] . '</td>';
$description= $row["OPENED_BY_CORP_ID"] . '</td>';
//$description= $row["REQUESTED_BY_CORP_ID"] . '</td>';
//$description= $row["DIR_CI_NETWORK_NAME"] . '</td>';
//$description= $row["INDIRECT_CI_NETWORK_NAME"] . '</td>';
$description= $row["PPMCID"] . '</td>';
//$description= $row["INIT_BU_CODE"] . '</td>';
if ($i % 3 == 0) {
$dyn_table .= '<tr><td>' . $row["C_NUMBER"] . '</td>';
$dyn_table .= '<td>' . $row["BRIEF_DESCRIPTION"] . '</td>';
$dyn_table .= '<td>' . $row["PLANNED_START"] . '</td>';
$dyn_table .= '<td>' . $row["PLANNED_END"] . '</td>';
$dyn_table .= '<td>' . $row["SERVER_RECYCLE_FMR"] . '</td>';
// $dyn_table .= '<td>' . $row["RECYCLE_FMR"] . '</td>';"] . '</td>';
$dyn_table .= '<td>' . $row["ORIGINAL_OPERATOR"] . '</td>';
$dyn_table .= '<td>' . $row["IMPL_GRP_FMR"] . '</td>';
$dyn_table .= '<td>' . $row["SEVERITY"] . '</td>';
// $dyn_table .= '<td>' . $row["RELATED_RECORD_IM"] . '</td>';
// $dyn_table .= '<td>' . $row["RISK"] . '</td>';
// $dyn_table .= '<td>' . $row["CLOSING_COMMENTS"] . '</td>';
// $dyn_table .= '<td>' . $row["COMPLETION_CODE"] . '</td>';
// $dyn_table .= '<td>' . $row["REQUEST_DEPT"] . '</td>';
// $dyn_table .= '<td>' . $row["REQUEST_TYPE_FMR"] . '</td>';
// $dyn_table .= '<td>' . $row["CATEGORY"] . '</td>';
// $dyn_table .= '<td>' . $row["CHG_TYPE_FMR"] . '</td>';
$dyn_table .= '<td>' . $row["STATUS"] . '</td>';
$dyn_table .= '<td>' . $row["APPROVAL_STATUS"] . '</td>';
// $dyn_table .= '<td>' . $row["ENV_CODE_FMR"] . '</td>';
// $dyn_table .= '<td>' . $row["ENVIRONMENT_DETAILS"] . '</td>';
$dyn_table .= '<td>' . $row["OPENED_BY_CORP_ID"] . '</td>';
// $dyn_table .= '<td>' . $row["REQUESTED_BY_CORP_ID"] . '</td>';
// $dyn_table .= '<td>' . $row["DIR_CI_NETWORK_NAME"] . '</td>';
// $dyn_table .= '<td>' . $row["INDIRECT_CI_NETWORK_NAME"] . '</td>';
$dyn_table .= '<td>' . $row["PPMCID"] . '</td>';
// $dyn_table .= '<td>' . $row["INIT_BU_CODE"] . '</td>';
}
$i++;
}
$dyn_table .= '</tr></table>';
oci_close($conn);
?>
<html>
<body>
<h3>CM Dashboard</h3>
<!-- Execute database query on button click -->
<!-- <input type="submit" value="<?php echo oci_execute($stid); ?>" /> -->
<!--Return Results in Table -->
<?php echo $dyn_table; ?>
</body>
</html>
php jquery ajax oracle
I am new to php and have two things I am trying to accomplish with this post. The first issue I am trying to resolve is to trigger a database call on a button click. I have read a few things using ajax and jquery but not sure how I would implement it in my code. Currently the code is loading hard coded values from a sql query on page load. I would like to make the request on button click after page load. The second issue is I need to assign a variable inside a variable in the sql query. I have a start and end date that needs to be assigned to a variable upon selection. I was planning on using bootstraps built in date picker but I am not sure if that is the best method.
<?php
error_reporting(-1);
ini_set('display_errors', 'On');
// Include database connection
include 'sample.sql';
$conn = oci_connect('');
// SQL query to interact with info from our database
$conn = oci_connect('');
$stid = oci_parse($conn, $sql);
if( !oci_execute($stid) ) {
$e = oci_error();
echo htmlentities($e['message'], ENT_QUOTES);
}
$i = 0;
// Establish the output variable
$dyn_table = '<table border="1" cellpadding="8">';
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
$id = $row["C_NUMBER"] . '</td>';
$description= $row["BRIEF_DESCRIPTION"] . '</td>';
$description= $row["PLANNED_START"] . '</td>';
$description= $row["PLANNED_END"] . '</td>';
$description= $row["SERVER_RECYCLE_FMR"] . '</td>';
//$description= $row["RECYCLE_FMR"] . '</td>';"] . '</td>';
$description= $row["ORIGINAL_OPERATOR"] . '</td>';
$description= $row["IMPL_GRP_FMR"] . '</td>';
$description= $row["SEVERITY"] . '</td>';
//$description= $row["RELATED_RECORD_IM"] . '</td>';
//$description= $row["RISK"] . '</td>';
//$description= $row["CLOSING_COMMENTS"] . '</td>';
//$description= $row["COMPLETION_CODE"] . '</td>';
//$description= $row["REQUEST_DEPT"] . '</td>';
//$description= $row["REQUEST_TYPE_FMR"] . '</td>';
//$description= $row["CATEGORY"] . '</td>';
//$description= $row["CHG_TYPE_FMR"] . '</td>';
$description= $row["STATUS"] . '</td>';
$description= $row["APPROVAL_STATUS"] . '</td>';
//$description= $row["ENV_CODE_FMR"] . '</td>';
//$description= $row["ENVIRONMENT_DETAILS"] . '</td>';
$description= $row["OPENED_BY_CORP_ID"] . '</td>';
//$description= $row["REQUESTED_BY_CORP_ID"] . '</td>';
//$description= $row["DIR_CI_NETWORK_NAME"] . '</td>';
//$description= $row["INDIRECT_CI_NETWORK_NAME"] . '</td>';
$description= $row["PPMCID"] . '</td>';
//$description= $row["INIT_BU_CODE"] . '</td>';
if ($i % 3 == 0) {
$dyn_table .= '<tr><td>' . $row["C_NUMBER"] . '</td>';
$dyn_table .= '<td>' . $row["BRIEF_DESCRIPTION"] . '</td>';
$dyn_table .= '<td>' . $row["PLANNED_START"] . '</td>';
$dyn_table .= '<td>' . $row["PLANNED_END"] . '</td>';
$dyn_table .= '<td>' . $row["SERVER_RECYCLE_FMR"] . '</td>';
// $dyn_table .= '<td>' . $row["RECYCLE_FMR"] . '</td>';"] . '</td>';
$dyn_table .= '<td>' . $row["ORIGINAL_OPERATOR"] . '</td>';
$dyn_table .= '<td>' . $row["IMPL_GRP_FMR"] . '</td>';
$dyn_table .= '<td>' . $row["SEVERITY"] . '</td>';
// $dyn_table .= '<td>' . $row["RELATED_RECORD_IM"] . '</td>';
// $dyn_table .= '<td>' . $row["RISK"] . '</td>';
// $dyn_table .= '<td>' . $row["CLOSING_COMMENTS"] . '</td>';
// $dyn_table .= '<td>' . $row["COMPLETION_CODE"] . '</td>';
// $dyn_table .= '<td>' . $row["REQUEST_DEPT"] . '</td>';
// $dyn_table .= '<td>' . $row["REQUEST_TYPE_FMR"] . '</td>';
// $dyn_table .= '<td>' . $row["CATEGORY"] . '</td>';
// $dyn_table .= '<td>' . $row["CHG_TYPE_FMR"] . '</td>';
$dyn_table .= '<td>' . $row["STATUS"] . '</td>';
$dyn_table .= '<td>' . $row["APPROVAL_STATUS"] . '</td>';
// $dyn_table .= '<td>' . $row["ENV_CODE_FMR"] . '</td>';
// $dyn_table .= '<td>' . $row["ENVIRONMENT_DETAILS"] . '</td>';
$dyn_table .= '<td>' . $row["OPENED_BY_CORP_ID"] . '</td>';
// $dyn_table .= '<td>' . $row["REQUESTED_BY_CORP_ID"] . '</td>';
// $dyn_table .= '<td>' . $row["DIR_CI_NETWORK_NAME"] . '</td>';
// $dyn_table .= '<td>' . $row["INDIRECT_CI_NETWORK_NAME"] . '</td>';
$dyn_table .= '<td>' . $row["PPMCID"] . '</td>';
// $dyn_table .= '<td>' . $row["INIT_BU_CODE"] . '</td>';
}
$i++;
}
$dyn_table .= '</tr></table>';
oci_close($conn);
?>
<html>
<body>
<h3>CM Dashboard</h3>
<!-- Execute database query on button click -->
<!-- <input type="submit" value="<?php echo oci_execute($stid); ?>" /> -->
<!--Return Results in Table -->
<?php echo $dyn_table; ?>
</body>
</html>
php jquery ajax oracle
php jquery ajax oracle
edited Jan 3 at 16:05
Dk 68 61 63 6b
asked Jan 3 at 15:10
Dk 68 61 63 6bDk 68 61 63 6b
301311
301311
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54024964%2ftriggering-database-calls-on-button-click-in-oracle-using-php%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54024964%2ftriggering-database-calls-on-button-click-in-oracle-using-php%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown