<?php

$link = $_POST['link'];
$link2 = 'Link 2';

if (empty($link))
	echo $link2;
else
	echo $link;

?>