Are you kidding me? My hotel cost me about 200$/month to keep it up and running! You won't have much success for 12$ here is what most hotel uses
Dedicated Server
SSL (more secured data)
VPS
Time to code!
Time to deal with all pros/cons
It takes time for the users to come!
It's pretty simple... When you get the use of it :P Practice makes perfect, I took the time to learn all this, I'm still learning but this tut is GREAT! resource. Keep up the good work Sledmore
I believe it has something to do with the database, because it's telling you there is an unknown column called "account_locked" so I would go into the database and search for the column and see what comes up.
If you're only getting white client Press F12 or Right Click and then Click View Inspected Element. Tap on Console to find out what files are not linking correctly.
White Client is caused by not having the right files linking to the client.php file which is cause blank page because it cannot...
So I'm trying to get this still to make it when the staff is online. so basically online = 1
<?php
$getStaff = mysql_query("SELECT * FROM users WHERE rank <=5");
$staffs = mysql_num_rows($getStaff);
?>
There are <strong><?php echo $staffs; ?></strong> Staff Members on {hotelname}.<br />...
Actually I already got it fixed, you can add hyphen in a url! Derp! sucks doesn't
It's called finding the right Rewrite coding to get the hyphen to work.
I'm trying to add "-" in my url but it's redirecting me to /me
basically its suppose /staff/co-owners but it's redirecting me /me
this is my .htaccess
RewriteEngine On
RewriteRule ^(|/)$ index.php?url=$1
RewriteRule ^([a-zA-Z0-9_-]+)(|/)$ index.php?url=$1
RewriteEngine on
RewriteRule...