That's cool I find this part of that website particularly interesting: Players of Mini Friday can now play PUBG and can use of some of these cool and funny PUBG Names.
I think Habbo has learned quickly that their demographic has aged with the game. If you look at Habbo's marketing (at what little marketing does exist), I don't think they target a children's audience anymore. Really I think Habbo X is an attempt to put crypto into the parent company's portfolio...
In login.php in the controllers folder
protected function login(Player $user)
{
if ($user && Auth::login($user)) {
response()->json(["status" => "error", "location" => "https://servers.gg/servers/%YOURSLUG%/vote&return=1"]);
} else {...
I kind of like the monotonous design though. It's like starting with bootstrap, as a result you'll actually see some unique styling among hotels which use it. Plus, it clears your head when you're thinking about designing it. When something is poorly designed, or has too much color its...
I like the concept of it, however there are a lot of improvements that could be made before someone would actually want to use this in production.
One example would be making the navigation bar white with a little bit of transparency, and make text that is on dark backgrounds white so it can...
Change the crossdomain.xml to http:// or just :// so it uses which ever is available. According to the error it's saying the authority of your SSL cert is invalid, so just remove that not sure if localhost supports https, if it does it probably requires extra config. This is more than likely...
First of all, FindRetros api is slightly old. It hasn't been updated since the newest website has been live. Since now when you vote if you don't pass the return argument and set it equal to one, it may not redirect back to the destination you specified. To work around this modify the code to...
I'm afraid that's exactly your error. You didn't enter your production folder right.
It should be localhost/swf/gordon/Production-1o199191
Not localhost/swf/ swf/gordon.
It says 404, meaning where youre telling your cms where it is its going there and saying "hey! Theres really nothing...
I think I read somewhere that you discontinued this, but I hope I misread.
This looks great, both front end and under the hood. The concept is nice, and with a proper team I feel like it could help stampede the decline of users within the retro community. Allowing files, and information to be...
Yeah, you just set an id to the whole form similar to how you do the select. Then do an if statement for $_POST['idYouSpecifiedforForm']
so basically
if(isset($_POST['idYouSpecifiedforForm'])){
if(isset($_POST['idforSelect'])){
//do stuff
}
if(isset($_POST['idforField'])){...
https://stackoverflow.com/questions/17139501/using-post-to-get-select-option-value-from-html
<?php
if(isset($_POST['toggleTrading'])) {
if($_POST['toggleTrading'] != 0 AND $_POST['toggleTrading'] != 1){
// bad data about to be submitted, escape it
die("Unable to post that...