¿Entonces mi código debería de quedar así?
Código PHP:
<?php
$link = mysql_connect("localhost", "user", "0000");
mysql_select_db("Prueba", $link);
$Select = mysql_query("select * from Producto");
if (!empty($_POST)) {
// Inserciones varias...
header('Location: archivo.php');
}
echo "Inserciones realizadas";
?>