将两个SELECT连接成一个mysql_query

A have problem, i need to join 2 SELECTs. I have this code, but it puts all from the $age to the end of page, and i need it in same row as the other resutls

<?php
mysql_connect("***", "***", "***") or die(mysql_error());
mysql_select_db("***");

$result = mysql_query("SELECT * FROM business");
$age = mysql_query("SELECT DATEDIFF( CURRENT_DATE, founded ) as date_difference FROM business");

while($row = mysql_fetch_array($result))
  {
 ?><li class="onebusiness <?php echo $row['category']?>"><a href="<?php
  echo $row['link'];?>"><img src="<?php
  echo $row['img'];?>" height="125" width="125"/><p class="name"><?php
  echo $row['name'];?></p><p class="age"><?php
  echo $row['founded'];?></p></a></li><?php
  }

while($row = mysql_fetch_array($age))
  {
 ?><p class="age"><?php echo $row['date_difference']?></p><?php
  }
mysql_close();
?> 

You can do it like this:

mysql_query("SELECT *, DATEDIFF( CURRENT_DATE, founded ) as date_difference FROM business");
select a, b, a-b as difference from mytable
$result = mysql_query("SELECT *, DATEDIFF( CURRENT_DATE, founded ) as date_difference FROM business");

Why are you not doing

SELECT link, img, name, founded, DATEDIFF( CURRENT_DATE, founded ) as date_difference FROM business

This would give you all fields you need

<?php
    mysql_connect("***", "***", "***") or die(mysql_error());
    mysql_select_db("***");

    $result = mysql_query("SELECT `link`, `img`, `name`, `founded`, DATEDIFF( CURRENT_DATE, founded ) as 'date_difference' FROM `business`");

    while($row = mysql_fetch_array($result))
    {
    ?>
        <li class="onebusiness <?php echo $row['category']?>">
            <a href="<?php echo $row['link'];?>">
                <img src="<?php echo $row['img'];?>" height="125" width="125"/>
                <p class="name"><?php echo $row['name'];?></p>
                <p class="age"><?php echo $row['founded'];?></p>
            </a>
        </li>
        <p class="age"><?php echo $row['date_difference']?></p>
    <?php
    }
    mysql_close();
?>