This commit is contained in:
mcguirepr89
2022-03-06 13:54:40 -05:00
parent a5b38e4606
commit f9a894d5d3
6 changed files with 19 additions and 18 deletions
+5 -5
View File
@@ -104,7 +104,7 @@ if(!isset($_POST['species'])){
$filename = "/By_Date/".$date."/".$comname."/".$results['File_Name'];
echo "<th>$species</th>
<td style=\"vertical-align:middle;\"><a href=\"https://wikipedia.org/wiki/$sci_name\" target=\"top\"><i>$sciname</i></a></td>
<td class=\"spectrogram\">Best Recording<br>$date $time<br>$maxconf<br><video controls poster=\"$filename.png\" preload=\"none\"><source src=\"$filename\"></video></td>
<td class=\"spectrogram\">Best Recording<br>$date $time<br>$maxconf<br><video controls poster=\"$filename.png\" preload=\"none\" title=\"$filename\"><source src=\"$filename\"></video></td>
</tr></table>";
}}
echo "</form>
@@ -120,9 +120,9 @@ if(!isset($_POST['species'])){
}
$result2 = $statement2->execute();
echo "<table>
<tr>
<th>Listen</th>
</tr>";
<tr>
<th>$name</th>
</tr>";
while($results=$result2->fetchArray(SQLITE3_ASSOC))
{
$comname = preg_replace('/ /', '_', $results['Com_Name']);
@@ -135,7 +135,7 @@ if(!isset($_POST['species'])){
$confidence = $results['Confidence'];
echo "<tr>
<td>$date $time<br>$confidence<br>
<video controls poster=\"$filename.png\" preload=\"none\"><source src=\"$filename\"></video></td>
<video controls poster=\"$filename.png\" preload=\"none\" title=\"$filename\"><source src=\"$filename\"></video></td>
</tr>";
}echo "</table>";}?>