How would I echo a new line after echoing row data
PHP Code:
<?php
mysql_connect("localhost", "root", "root") or die(mysql_error());
mysql_select_db("auth") or die(mysql_error());
$result = mysql_query("SELECT * FROM users")
or die(mysql_error());
$row = mysql_fetch_array( $result );
echo " ID: ".$row['id']; //would like a new line here
echo " Username: ".$row['username']; //would like a new line here
echo " Password: ".$row['password']; //would like a new line here
echo " Email: ".$row['email']; //would like a new line here
echo " Active Status: ".$row['isactive']; //would like a new line here
echo " Active Key: ".$row['activekey']; //would like a new line here
echo " Reset Key: ".$row['resetkey']; //would like a new line here
?>