PHP MySQL join table
        Posted  
        
            by Jordan Pagaduan
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Jordan Pagaduan
        
        
        
        Published on 2010-06-02T02:35:40Z
        Indexed on 
            2010/06/02
            2:43 UTC
        
        
        Read the original article
        Hit count: 415
        
$sql = "SELECT logs.full_name, logout.status FROM logs, logout WHERE logs.employee_id = logout.employee_id";
tables --> logs
           logout
I'm having error on this. I search join tables in google. And that's what I got. What is wrong with this code?
© Stack Overflow or respective owner