Send id to another page via href link in table list
<div class="row">
<a href="<?php echo site_url(); ?>/pagename/?ID=<?php echo $print->ID ;?>" class="link">
<div class="col-2"><?php echo $print->person_name ;?></div>
<div class="col-2"><?php echo $print->phone ;?></div>
<div class="col-2"><?php echo $print->email ;?></div>
<div class="col-2 "><?php echo $print->password ;?></div>
</a>
</div>
Get id on anther page with below variable
$id=$_REQUEST['ID'];
Comments
Post a Comment