<?php
include "c1.inc";
$cxn=mysqli_connect($host,$user,$pass,$db) or die("ya did it wrong");
$sumqry =" SELECT * FROM `summoncreatures` WHERE `type`='Small' AND `size`='Undead' ";
$sumresult= mysqli_query($cxn,$sumqry)or die('Ya did it wrong.');
$suminfo=mysqli_fetch_assoc($sumresult);//load info into var
echo $suminfo[WS];
echo "Hey";
?>
i can't find any errors was wondering if another pair of eyes (or ten) could. any help would be greatly appreciated!