Duplicate code is always a sign of suboptimal software design and there are many opportunities to prevent it. Here are some of them for your specific task:
1. Use Params
Unify your files into one and use GET-Params in your URL like file.php?output=pfd. In your script you can read in this parameter from $_GET['output'] and decide, what export format to generate (if ... else, switch).
2. Use Includes
To have just one big file will be very confusing. So you can also keep your three php files and create a fourth file get_data.inc.php, where you have all the duplicate code fetching the data. Now you can load and execute this file in every of your three php's via include get_data.inc.php.
3. Use Functions
Outsourcing code into an include, maybe also confusing, because you have no idea, what the include will do and what are the dependencies. So it is better, to encapsulate the functionality into a function. Here you can clearly define, what to stick into the function (db connection?) and what you will get out (a data array?). Create a new file get_data.func.php and define a function get_data($db_connection), doing all the stuff and returning the data ready to output. Then in every file include the file via require_once get_data.func.php and say $Data = get_data($db_connection);.
4. Use Class Inheritance
You can use the concept of class inheritance. You can define an abstract class, which includes the functionality to fetch your data from the database and you can define an abstract function abstract public function output();. Then you can create child classes extending your class, which are implementing the output() function in a specific way.
5. Use a MVC Framework
You could use an established framework, to implement a "Model View Controller" (MVC) pattern. Here you divide the different layers of your application (data from db, prepare data for output, present data) in a very clean way.
Disclaimer: These are just some hints for learning, to better organize your projects. If you have not much experience, I do not suggest directly starting with a big MVC framework. Just take the path of enlightenment from top to down ;)