Write(float h, string txt [, mixed link])
h
txt
link
//начинаем с установки шрифта
$pdf->SetFont('Arial','',14);
$pdf->Write(5,'Visit ');
//теперь добавляем синее подчеркивание для ссылки
$pdf->SetTextColor(0,0,255);
$pdf->SetFont('','U');
$pdf->Write(5,'www.fpdf.org','http://www.fpdf.org');