Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/09/2023 in all areas

  1. You seem to be really enjoying single quotes today. https://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.single
    1 point
  2. As a general rule of thumb, if you have an error message that you don't understand and would like help understanding what's wrong, post the error message.
    1 point
  3. The amount of bytes used to encode characters, and as a result the total amount of characters that can be encoded. 10.10.1 Unicode Character Sets
    1 point
  4. Don't know the real difference, but if you want to use emojis then UTF8mb4 is the way to go -> "Database character encoding: Ensure that your database is using the utf8mb4 character set and the utf8mb4_unicode_ci collation. This character set supports storing emojis and other Unicode characters properly." Though you still use `<meta charset="UTF-8">` in the HTML and set the following if you're using PDO -> $dsn = "mysql:host=localhost;dbname=your_database_name;charset=utf8mb4"; $pdo = new PDO($dsn, $username, $password);
    1 point
This leaderboard is set to New York/GMT-04:00
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.