Is it possible to customize the file selection dialog for file uploads in PHP to improve user experience?

When uploading files in PHP, the default file selection dialog may not provide the best user experience. To customize the file selection dialog, you can use JavaScript to trigger a click event on a hidden file input element when a custom button is clicked. This allows you to style the button and provide a better user interface for selecting files.

<!-- HTML -->
<input type="file" id="fileInput" style="display: none;">
<button onclick="document.getElementById('fileInput').click()">Select File</button>

<!-- JavaScript -->
<script>
document.getElementById('fileInput').addEventListener('change', function() {
    // Handle selected file
    var file = this.files[0];
    console.log(file);
});
</script>