Answers for "php show filepath"

PHP
9

php include file path

<body>
<?php 
    define('ROOT_PATH', dirname(__DIR__).'/');
    include ROOT_PATH.'header.php';
    include ROOT_PATH.'main.php';
    include ROOT_PATH.'footer.php';
?>
</body>
Posted by: Guest on September-05-2021
0

how to get full path of uploaded file in php

<script>
  var file=document.getElementById('IdOfFileInputControl').value
  alert(file)
</script>
Posted by: Guest on April-08-2021

Browse Popular Code Answers by Language