Read ALL the Pads
of the FS-Wiai Pad
connect_errno){
die("FAIL");
}
$con->set_charset("utf8");
$query = 'select distinct substring(store.key,5,locate(":",store.key,5)-5) from store where store.key like "pad:%"';
$result = $con->query($query);
while($row = $result->fetch_row()){
echo "".$row[0]."
\n";
}
?>