skip to Main Content

Php versions – Downloading files via PHP problem on webserver

Could someone help me with a little PHP problem? This is my code: $mr = mysqli_fetch_assoc($ms); header('Content-Type: application/octet-stream'); header("Content-Transfer-Encoding: Binary"); header("Content-disposition: attachment; filename="" . basename($mr['flink']) . """); readfile($mr['flink']); header("Location: ref.php?action=viewdeti&id=".$_GET['id']); Where $mysqli is my mysql connection and $id is $_GET['id'].…

VIEW QUESTION

phpmyadmin download SHA256 disagreement

The current phpmyadmin tar download SHA256 hash does not match the download site value. The published hash for ver 4.9.3 is f75c5e11b076176436653c6138d8185b0351b02a1bf8c5069ec8d0af254911df but I get this : downloads % shasum -a 256 phpMyAdmin-4.9.3-english.tar 514219cdf85819748e5f89584ccb5e0d181c27262f7da8950918133706d3d8fe. Unfortunately the tar unpacked automatically. Do…

VIEW QUESTION
Back To Top
Search