I fetch all the names of photos from the database. How to display all photos on the label?
Here is my code:
photo displaying.
       for row in rows:
            photo=row[2]
            img1="images/"+str(photo)+".png"
            img= PhotoImage(file=img1)
            photol= Label(photoframe,image=img,width=150,height=100)
            photol.pack()
            
            
            
            
                            
            
 
     
    