Search results

  1. MayoMayn

    Video Entertaining videos

    So yeah instead of people sharing funny videos in the general chat like myself, we should probably just do it in a thread to keep them.
  2. MayoMayn

    Starting University..

    Good luck, tell us about it :up:
  3. MayoMayn

    PHP & JS & HTML onClick event

    Most likely because you're detecting the change on the label tag with element of click instead of the input where the change is actually triggered on change.
  4. MayoMayn

    PHP & JS & HTML onClick event

    Post the page source in a gist
  5. MayoMayn

    PHP & JS & HTML onClick event

    Most likely because your HTML and JS is fucked. https://stackoverflow.com/a/9122119 <input <?= $maintenance ? 'checked' : ''; ?> type="checkbox" id="maintenance" /> $(document).ready(function() { // .on(event, fn) instead of .event(fn) $('#maintenance').on('change', function() {...
  6. MayoMayn

    PHP PDO - Cannot pass parameter 2 by reference

    $username = $_SESSION['username']; $extradata = 'Added folder named: ' . $name; $log = $db->prepare("INSERT INTO `logs` (`user`, `type`, `extradata`) VALUES (:n, 'add_folder', :e)"); $log->bindParam(':n', $username, PDO::PARAM_STR); $log->bindParam(':e', $extradata, PDO::PARAM_STR); You can't...
  7. MayoMayn

    hi

    hi
  8. MayoMayn

    What underground rap are you listening to?

    Idk why they named the title Last Nigga Left, but it's Last Ones Left and here's the real on Spotify: https://open.spotify.com/track/1Jox5Yuo0yl1JH4rpiD8in
  9. MayoMayn

    PHP PDO - SELECT COUNT(*)

    What exactly are you trying to receive with this script? As far as I can see your SQL is entirely different from the rest. Basically you're counting all columns. If you want to return the amount of rows where is_read = 0, you should just use: $query = $db->query("SELECT `id` FROM `contact`...
  10. MayoMayn

    Laptop Suggestions?

    https://www.amazon.com/gp/aw/d/B06XSBQZXR/ref=mp_s_a_1_4?ie=UTF8&qid=1504375844&sr=8-4&pi=AC_SX236_SY340_FMwebp_QL65&keywords=msi+laptop+gaming&dpPl=1&dpID=41czzvw-TkL&ref=plSrch
  11. MayoMayn

    Recruiting Talented Developer(s)

    This is the second thread you've made.
  12. MayoMayn

    Laptop Suggestions?

    Why not just buy a desktop?
  13. MayoMayn

    INACTIVE Project Alias

    Good luck with this mate! But tbh, we don't need another C# written emulator. Biggest issue is that the language lacks cross platform support, because literally we don't need more shitty retro hotels running IIS on a Windows VPS.
  14. MayoMayn

    INACTIVE Habbo Archive - PHP - PDO - MySQL - BCRYPT - MetroUI

    Instead of asking for a VPS or host, you should use Github and Heroku
  15. MayoMayn

    Windows 10 - Multiple monitors

    I'll check it out, thanks.
  16. MayoMayn

    Windows 10 - Multiple monitors

    I've just edited my post. I meant it the other way around, but without having to disable full screen
  17. MayoMayn

    Windows 10 - Multiple monitors

    When using multiple monitors and playing something like League of Legends, how do I move the cursor to the second screen without switching window from League of Legends to the desktop on my main screen?
Top