skip to Main Content

Mysql – Is this good way to use php in html page

<?php require_once('dbcon.php'); $query = "select * from indexpage"; $query2= "SELECT * FROM `blogintro` ORDER BY `id` DESC;"; $query3= "SELECT * FROM `indexjob` ORDER BY `id` DESC;"; $query4= "SELECT * FROM `dsintro` ORDER BY `id` DESC;"; $result = mysqli_query($con,$query); $result2 =…

VIEW QUESTION

Laravel public folder path

I am using laravel 10, and have images inside /public/images , when i try yo use asset or public_path(), i get a duplicate prepended to the url like so Using public_path(); file_get_contents(/var/www/soccia/var/www/soccia/public): Failed to open stream: No such file or…

VIEW QUESTION

Html – Why now can't play audio from gdrive file?

I have code like this: <audio id="player" autoplay controls> <source src="http://docs.google.com/uc?export=open&id=107VpNA7BU4AIxVsK2sRg69-rOigdU57n" type="audio/mp3"> </audio> Originally, the code above was supposed to play a song from a file on the drive. However, for some reason, it's not working anymore. Has anyone experienced…

VIEW QUESTION
Back To Top
Search