dynamic/live search box with php, javascript, mysql

I went through a bunch of iterations with this a couple years ago and didn’t get it working. This is the second one I tried recently and was able to get what I wanted for hyperlinked results. https://www.codingcage.com/2016/12/autocomplete-search-with-href-link-php.html code blobs for posterity: database: — — Database: `codingcage` — — ——————————————————– Read more

julia mysql mariadb dbinterface update

https://github.com/JuliaDatabases/DBInterface.jl  mariadb — mysql while doing a query on “conn”, I opended second connection “conn2”, and updated the table while stepping through the results of the first query conn = DBInterface.connect(MySQL.Connection,”localhost”,”user”,”pass”,db=”foo”) sql = “””select char from foo””” response = DBInterface.execute(conn,sql) conn2 = DBInterface.connect(MySQL.Connection,”localhost”,”user”,”pass”,db=”foo”) sql2 = DBInterface.prepare(conn2, “UPDATE foo set agility Read more