Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~2K People Reached
Favorite Forums

3 Posted Topics

Member Avatar for Vandiun

If you are talking about to pass the data like <?php echo $gal['name']; ?> and <?php echo $gal['clientName']; ?> to modal, then this is possible. <?php $name = $gal['name']; $client = $gal['clientName']; ?> <a href="<?php echo base_url("your_controller_name/?name=".$name."&client=".$client);?>" data-toggle="modal" data-target="#myModal" data-backdrop="static" data-keyboard="false" id="mybtn"><?php echo $gal['name']; ?></a> If you are talking about …

Member Avatar for Dani
2
674
Member Avatar for Nine_2

I have checked your code, I think the rest is not very difficult, I was facing the similar problem. Now clicking on "Release Request Form" opens up the modal (I have tested it is okay). Assuming the opened modal displays the data from the database as in the images in …

Member Avatar for devphp
1
889
Member Avatar for devphp

Hello all. I am trying to use four modals in codeigniter. Main page has four simple links, each of them pops up its modal. Then each modal has a form with upload image, this means main page requires four images which would be uploaded through modals. The upload form is …

0
191

The End.