How can a new tab be opened instead of using the input window to open a file in PHP?

To open a new tab instead of using the input window to open a file in PHP, you can use the "target" attribute in the anchor tag (<a>) with the value "_blank". This will instruct the browser to open the linked file in a new tab.

&lt;a href=&quot;file.pdf&quot; target=&quot;_blank&quot;&gt;Open File&lt;/a&gt;