page.php?var1=$var21&var2=$va2
In the link he is setting variables.
he is saying that var1 = $var21 and var2 = $va2
This is so you can capture them on the receiving page.
On the receiving page, if you type:
echo $var1;
it will output whatever the value of $var21 is.
$var21 can be replaced with the rows of of your mysql database or whatever value you want.
From the database you can use $row[0] for the first column in the database.