Click here to Skip to main content
15,891,316 members

Comments by kirupabshankar (Top 4 by date)

kirupabshankar 24-Nov-20 8:00am View    
<div class="multiselect">
       	 <?php
		   $sql="SELECT id, first_name, last_name, chat_id from users_master ORDER BY first_name ASC";
 $result = mysqli_query($db,$sql);
  $row = mysqli_fetch_array($result, MYSQLI_ASSOC);
		   
		while ($row = 	mysqli_fetch_array($result))  { 
			?>
    <label><input type="checkbox" name="taskers[]" value="<?php echo $row['chat_id']; ?>"/> <?php echo $row['first_name']. " " .$row['last_name']; ?> </label>
    <?php
		}
		   ?>
			</label>
		   </div>
kirupabshankar 10-May-20 10:11am View    
Please help me to correct it as I am beginner
kirupabshankar 7-May-20 9:01am View    
I changed the same, but the same problem persists.
kirupabshankar 7-May-20 8:28am View    
I gave the name as "display" for the iframe and assigned the same to the target, but still no use any idea?