Skip to content
View XenoPh1lia's full-sized avatar

Block or report XenoPh1lia

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. sql_tutorial.sql sql_tutorial.sql
    1
    SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
    2
    SET AUTOCOMMIT = 0;
    3
    START TRANSACTION;
    4
    SET time_zone = "+00:00";
    5
    
                  
  2. A simple calculator in html and php A simple calculator in html and php
    1
    <?php
    2
    $currentValue = 0;
    3
    
                  
    4
    $input = [];
    5