Ejemplo n.º 1
0
<?php

include "header.php";
require_once "../common/class/user.class.php";
require_once "../common/class/project_admin.class.php";
$user = new user();
$project_admin = new project_admin();
$bid_details = $project_admin->get_bid_by_id($_GET['id']);
?>
<script>
function check_amount()
{
var transaction_type=document.getElementById('transaction_type').value;
if(transaction_type=="credit")
{
document.getElementById('plus_amount').style.display="inline";
document.getElementById('minus_amount').style.display="none"
}
else
{
if(transaction_type=="debit")
{
document.getElementById('minus_amount').style.display="inline";
document.getElementById('plus_amount').style.display="none";
}
}
}
</script>
<table  width="100%">
<tr align="center">
<td align="center" bgcolor="#66CCFF">Edit Bid on '<?php