The problem is that you didn't save the mysqli connection. Just change your connect to :
$aVar = mysqli_connect('localhost','tdoylex1_dork','dorkk','tdoylex1_dork');
After that include this code in your query:
$query1 = mysqli_query($aVar, "SELECT name1 FROM users
ORDER BY RAND()
LIMIT 1");
$aName1 = mysqli_fetch_assoc($query1);
$name1 = $aName1['name1'];
Please note that you have to enclose your connection variables as strings. I hope this helps you.