Heya, I coded the My Rooms but have no clue where to put it in order for it to show up in the drop-down menu. This will work as long as you've included it where your connected to your hotels SQL server. So, it wouldn't work if you used it as a standalone file.
PHP Code:<?php
$getRoom = mysql_query("SELECT * FROM `rooms` WHERE owner = '".USER_NAME."' ORDER BY id DESC");
while($row = mysql_fetch_assoc($getRoom))
{
echo $row['caption']; echo "<br>";
}
?>



![[UBER] "My Rooms" listing](http://ragezone.com/hyper728.png)


