Skip to content
Permalink
8c5f4bbdea
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
11 lines (8 sloc) 248 Bytes
<?php
//This page displays a list of all registered members
include('config.php');
$req = mysqli_query($var,"select v_value from valve");
while($dnn = mysqli_fetch_array($req)){
echo htmlentities($dnn['v_value'], ENT_QUOTES, 'UTF-8');
}
?>