Im trying to test if two fields have been entered at the same time
I have tried many combinations but cant get it. My last effort was
if(isset($_POST['Link'] && isset($_POST['uploadedfile'])){
die('You can\'t select to upload a link and a file at the same time.');
}
else
{
STUFF HERE;
}