i've been attempting to execute this code , all i got was an error.
<?php
$connect = mysql_connect("localhost","root","") or die ("connection failed!");
mysql_select_db("users") or die (mysql_error());
echo "connected!"
$extract = mysql_query("select * from member order by id ASC") or die mysql_error();
?>
and this error appeared : Parse error: syntax error, unexpected T_VARIABLE, expecting ',' or ';' in C:\xampp\htdocs\xampp\connection1.php on line 9
anybody know why? thanks in advance.