Thanks, but I am struggling to get the results out of what I guess is the resultant array. For example,
$row = mysqli_fetch_row($result);
echo $row['description', 'url'];
gives no result.
$row = mysqli_fetch_row($result);
echo $row[0];
gives me description only.
What I want to be able to do is extract, and assign variables to, description and url - as I did, rather clumsily, in the opening post.