testing an installation

This commit is contained in:
mcguirepr89
2022-03-06 09:28:11 -05:00
parent 47028b3d6c
commit eaf096b485
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -104,7 +104,7 @@ if(!isset($_POST['species'])){
$filename = "/By_Date/".$date."/".$comname."/".$results['File_Name']; $filename = "/By_Date/".$date."/".$comname."/".$results['File_Name'];
echo "<th>$species</th> 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 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\"><source src=\"$filename\"></video></td> <td class=\"spectrogram\">Best Recording<br>$date $time<br>$maxconf<br><video controls poster=\"$filename.png\" preload=\"none\"><source src=\"$filename\"></video></td>
</tr></table>"; </tr></table>";
}} }}
echo "</form> echo "</form>
@@ -135,7 +135,7 @@ if(!isset($_POST['species'])){
$confidence = $results['Confidence']; $confidence = $results['Confidence'];
echo "<tr> echo "<tr>
<td>$date $time<br>$confidence<br> <td>$date $time<br>$confidence<br>
<video controls poster=\"$filename.png\"><source src=\"$filename\"></video></td> <video controls poster=\"$filename.png\" preload=\"none\"><source src=\"$filename\"></video></td>
</tr>"; </tr>";
}echo "</table>";}?> }echo "</table>";}?>
+1 -1
View File
@@ -103,7 +103,7 @@ $sciname = preg_replace('/ /', '_', $todaytable['Sci_Name']);
<b><a class="a2" href="https://allaboutbirds.org/guide/<?php echo $comname;?>" target="top"><?php echo $todaytable['Com_Name'];?></a></b><br> <b><a class="a2" href="https://allaboutbirds.org/guide/<?php echo $comname;?>" target="top"><?php echo $todaytable['Com_Name'];?></a></b><br>
<a class="a2" href="https://wikipedia.org/wiki/<?php echo $sciname;?>" target="top"><i><?php echo $todaytable['Sci_Name'];?></i></a><br> <a class="a2" href="https://wikipedia.org/wiki/<?php echo $sciname;?>" target="top"><i><?php echo $todaytable['Sci_Name'];?></i></a><br>
<b>Confidence:</b> <?php echo $todaytable['Confidence'];?><br> <b>Confidence:</b> <?php echo $todaytable['Confidence'];?><br>
<video controls poster="<?php echo $filename.".png";?>"><source src="<?php echo $filename;?>"></video></td> <video controls poster="<?php echo $filename.".png";?>" preload="none"><source src="<?php echo $filename;?>"></video></td>
<?php }?> <?php }?>
</tr> </tr>
</table> </table>