pls am trying to select data from user table and i keep getting this -> Parse error: syntax error, unexpected 'array' (T_ARRAY) in C:\xampp\htdocs\login\selt.php on line 10
$conn = mysqli_connect("localhost", "root", "", "logintest");
if (!$conn) {
die("connection aborted: ".mysqli_connect_error()); }
$run = mysql_query("Select * from user") ;
while($row=mysql_fetch array($run))
..Thanks