yes, the finished example in the tutorial is:
$DeleteQuery->bindParam("s","".($_GET['UserEmail']) ."");
$DeleteQuery->bindParam("i","".($_GET['UserID']) ."");
meaning that it is passing the first perimeter as a sting using the UserEmail URL variable. the second parameter is passed as an integer (i) using the UserID URL variable.