Ok, so this is cool. On my site, I learned how to create a simplified "wall" like facebook has... sort of. It's great for me to have done that because I am self taught with all of this. There is a problem, however. My <option> is not displaying the names correctly. It should display each name listed in the database separately, instead it is showing displaying them as a runon sentence. I don't understand why the <br> command isn't working. Here is the php:
<?php
$query=mysqli_query($rcon,"SELECT userid FROM registration");
while ($row=mysqli_fetch_array($query)){
echo $row['userid'] . '<br>';}
?>
and here is the other code
<?php
include('php/wall.php');
?>
<form name="response" action="messages/enterblog.php" method="POST">
To:<select name="respondto">
<option name="to"><?php require('connect/registerdb.php'); include('messages/list.php');?></option>
</select>
Message:<input type="text" name="respond">
<input type="submit">
</form>
</div>
Here is what is displayed.
rountest
as opposed to
roun
test