Как передать PHP переменные из modal pop up на другую страницу в PHP
у меня есть изнутри кнопка Применить есть, если нажать на кнопку он показывает всплывающую кнопку вы хотите подать заявку на эту работу, нажав на кнопку я передаю откровенный и идентификатор работы, если попытаться Эхо здесь значение показывает .но после нажатия на кнопку он перенаправляет другую страницу там значения не проходят.пожалуйста, любая помощь .спасибо заранее.
Что я уже пробовал:
include('assets/connection/session.php'); //this is another file which is showing yes or no message include('../work_flow.php'); //here in href if echo the managerid and job_id pop up is not showing thats why i removed it <div style="padding-top:10px; padding-right:17px;"> <a href="../work_flow.php?cand_id=<?php $managerID; ?>&job_id= <?php $event_id; ?>" data-toggle='modal' data-target="#myModalHorizontal" data-backdrop="static" data-keyboard="false"><button type="button" class="btn btn-danger pull-right">APPLY JOB</button></a> </div> //this is workflow file inside code if(isset($_GET['job_id'])) { //echo 'Do You really want to Apply for this Job with ID of'.$_GET['job_id'].'?<a href="work_flow.php?cand_id='.$_GET['cand_id'].'&yesapply='.$_GET['job_id'].'">Yes</a>|<a href="candidate/job.php">No</a>'; echo '<div class="content" style="padding-left:20px; padding-bottom:25px;"> <br/> <h5>Do You really want to Apply for this Job with ID of'. $_GET['job_id'].' </h5> <a style class="btn btn-danger pull-left" href="work_flow.php?cand_id='. $_GET['cand_id'].'&yesapply='.$_GET['job_id'].'"> YES</a><a class="btn btn-danger" href="job.php">NO</a> </div>'; echo "event id is".$_GET['event_id']; echo "candidate id is".$_GET['cand_id']; exit(0); } if(isset($_GET['yesapply'])) { $id_to_apply = $_GET['yesapply']; $cand_id = $_GET['cand_id']; $job_applied_date = date('Y-m-d H:i:s'); $sql = mysql_query("INSERT INTO `sk_c_job_applications`(`job_app_job_id`, `job_app_cand_id`, `job_app_date`,`job_app_status`) VALUES ('$id_to_apply','$cand_id','$job_applied_date','APPLIED')") or die (mysql_error()); header('location:candidate/job.php'); }