<?php
require('fpdf/mbfpdf.php');

$pdf=new MBFPDF('P', 'mm', 'A4');
$pdf->AddMBFont(GOTHIC ,'SJIS');
$pdf->AddPage();
$pdf->SetFont(GOTHIC,'',20);

$pdf->Cell(80, 15, 'Google', 1, 1, 'L', 0, 'http://www.google.co.jp/');
$pdf->Cell(80, 15, 'Yahoo', 1, 1, 'L', 0, 'http://www.google.co.jp/');

$pdf->Output();
?>