. **/ ?>

prepare("SELECT p.id, p.name, p.description, u.fullname AS owner, p.path, p.repo, p.status FROM projects AS p INNER JOIN users AS u ON (u.id=p.owner) ORDER BY p.name ASC"); $sql->execute(); while($row=$sql->fetch(PDO::FETCH_ASSOC)){ echo " "; } ?>
".$row['id']." ".$row['name']." ".$row['description']." ".$row['owner']." ".$row['path']." ".$row['repo']." ".$row['status']."