I See you're using
$username = $_POST['username'];
$password = $_POST['password'];
if(isset($_POST['submit']))
{
Use This instead, As the above gives errors.
if(isset($_POST['submit'])) {
$username = mysql_real_escape_string($_POST['username']);
$password = $_POST['password'];
Louis (Owner of HabJoy) Hasn't released his CMS, So theres no other way the other hotel has gotten it apart from ripping & the staff page can be edited.
CREATE TABLE IF NOT EXISTS `jobs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(100) NOT NULL,
`job` varchar(100) NOT NULL,
`why` text NOT NULL,
`experience` text NOT NULL,
`age` varchar(100) NOT NULL,
`other` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT...
Hmm.. have you got any rows in the table jobs?
Replace
$getMySQL = mysql_query("SELECT * FROM `jobs` ");
with
$getMySQL = mysql_query("SELECT * FROM `jobs` ORDER BY id") or die(mysql_error());