- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
3 Posted Topics
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 …
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 …
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 …
The End.
devphp