Search results

  1. JayCustom

    [PHP] Wont Submit data to DB

    You are using $_POST on your server, which means your form should do a POST request. A few other things I am going to point out: 1) Your table should be normalized. You are storing data in here multiple times. What happens if someone changes their username? Table 1: Associated_Users [ID]...
  2. JayCustom

    [PHP] Wont Submit data to DB

    No such thing as method request. Method="POST" https://www.w3schools.com/tags/att_form_method.asp
  3. JayCustom

    [PHP] Wont Submit data to DB

    Can you provide some code? The screencapture is great but tells us nothing
  4. JayCustom

    [C# JSON] How do I get in

    Couple ways you could do this. You could do a JSON serializer, where you convert it into a class object, or you could do a LINQ from a parsed JSON. So if you wanted to use a LINQ statement: JObject geographicalJSON = JObject.Parse(json); //json = Your string JSON double Temperature =...
  5. JayCustom

    [Release] Messy 2021 Furniture Release

    I like this set too :)
  6. JayCustom

    [Release] Club Gifts 2021 Furniture

    I like this furni set. Some unique items.
  7. JayCustom

    JavaScript API - Sync Method

    Yeah I am working on recoding this, I see what my issue is. It is expecting you to use the 'success' method to invoke the behavior you are expecting. So I am going to make an async function to control my message to the display, and hope it works, aha. 1607912205 Got it working. I recoded the...
  8. JayCustom

    JavaScript API - Sync Method

    So the same thing happens here too. It returns undefined: result = undefined async function(input) { const result = await checkPhoneExists(input.value); if (!Array.isArray(result['data']) || result['data'].length === 0) return true; var exists = result['data'][0]; return...
  9. JayCustom

    Flash Browser for Habbo (Habflash)

    What I would suggest is having code that would never change, but is a big part of the system, to be a referenced DLL which also contains some sort of blocker for them to steal credits :)
  10. JayCustom

    JavaScript API - Sync Method

    Hey Guys, How can I call a sync function for ajax url GET, and wait for a result (rather than returning "undefined" or an unfilled PROMISE ? I have tried so many things and I can't get this function to work properly. Parent Function: checkValidity: function(input) { for ( var i = 0; i...
  11. JayCustom

    Flash Browser for Habbo (Habflash)

    Does this support tools such as inspect element or viewing network info
  12. JayCustom

    PHP - Need API w/ Authentication

    Hey, I have that already allowing all domains header("Access-Control-Allow-Origin: *"); header("Access-Control-Allow-Methods: GET, POST"); header("Access-Control-Allow-Headers: Origin, Methods, Content-Type");
  13. JayCustom

    Hotel Works Fine, No Textures

    External variables are not linked properly.
  14. JayCustom

    PHP - Need API w/ Authentication

    To answer your points on the code: First - - The API is a JQuery Request, and in the code, above I was using Digest PHP Authentication, which I realize now is not easy to implement since you have to return a response, then reply again to gain access. So I am going to use basic authentication...
  15. JayCustom

    Is it possible to get PlusRP EMU?

    Config file is invalid. Is your config in the correct location? Does your config have the proper elements? Do you have any typos in your config file?
  16. JayCustom

    PHP - Need API w/ Authentication

    Okay, I am ready for some criticism and feedback - Here is my overall structure: / api / api.php / api / models / volunteer.php / api / security / authentication.php Here is my Authentication File: $realm = 'API'; $admins = array('REDACTED' => 'REDACTED', 'REDACTED2' =>...
  17. JayCustom

    PHP - Need API w/ Authentication

    Thanks for this. I'll read up those documentation, I do want to implement the restful api method.
  18. JayCustom

    PHP - Need API w/ Authentication

    Hey Guys, So I am working on my own custom CMS for a client, who has requested that I give them an API that another system will be able to make simple calls to validate or pull information. So for example, they need to know if a phone number exists in my system. Here is how I would like to do...
  19. JayCustom

    Degree of Protection (PlusEmu)

    Rather than trying to implement this like the Habbo class is, I would implement this as a member of the Habbo.cs file. The reason for this is you already have your GameClient, and Player instances. Really the RP is just an extension of a Habbo. In Habbo.cs I would have a reference to...
  20. JayCustom

    How do you generally discover content on DevBest?

    I use the shoutbox Forum Activity
Top