No, what I mean is, this is exactly what hotels like Blah would buy to make themselves more unique.
Me? I try & avoid buying things for my hotel unless it is directly supporting it, eg. VPS & domains.
I'm going to code this.
Printable View
No, what I mean is, this is exactly what hotels like Blah would buy to make themselves more unique.
Me? I try & avoid buying things for my hotel unless it is directly supporting it, eg. VPS & domains.
I'm going to code this.
Ik What you mean by having a Unique Hotel. I was going to keep all codes for Neon City and make it a Regular Hotel but i didnt want to Risk my Computer Getting hacked cause other hotels think they are at Risk of "Loosing Users" and anyways if one hotel kept all the Codes themselfs then all the Users would go to that hotel and your Hotel will be Hacked and Computer/VPS Ruined cause the competing Hotels are Jelous so i decided it would be Best to Share my Wealth with everyone :) Also im Coding a Support Ticket form for UberCMS where it Sends info to DB where It can be Read in Manage and Responded to through Email. Bout 50% done already:sleep:
adding room into db shouldn't be that hard to do.
Its already made in UberCMS, you'll just have to change a few lines of code..
UberCMS already has the class.rooms.php in the includes.
You can use commands like this in your client:
So you could add a link like this:Code:RoomManager::CreateRoom('Roomname', USER_NAME, 'MODEL');
%www%/client?newroom=Roomname&model=MODEL
And put this code into client
You do the models with numbers, so nobody can use a invaild model.Code:if (isset($_GET['newroom']) && is_numeric($_GET['model']))
{
switch (intval($_GET['model']))
{
case 0:
$model='model_a';
break
case 1:
$model='model_b';
break;
//... add more
default:
$model='model_s';
break;
}
RoomManager::CreateRoom($_GET['newroom'], USER_NAME, $model);
}
And if someone uses a invaild model, it uses the default model, "model_s".
You should add all your models like this, and spectify the link with a number as model.
Hope you understand it and know how to use and add more models.
And don't worry about the roomname, it gets filtered in the create function. So it's safe.
Wow sweet!
What font do you use for the titles? It's like the apple font - pretty awesome ;)
oh and awesome work! Thanks too for the other released you did :D
Nice! Thanks :D
love the Design Thanks 9.5/10