I wanted to add a logo to the backend response details for printout, and I just need to check if I do it correctly. This is the start of a table in browse.php:
$browseoutput .= "<table class='detailbrowsetable'>\n";
$idresult = db_execute_assoc($idquery) or safe_die ("Couldn't get entry<br />$idquery<br />".$connect->ErrorMsg());This is a row I added just after this:
$browseoutput .= "<tr><td colspan='2'>"
."<img src='../images/logo.png' align='right' class='logo'>"
."</td></tr>\n";
Is it correct..? With \n and dots and ;?