Skip to content
View daljitkatoch's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report daljitkatoch

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
daljitkatoch/README.md

πŸ™‹πŸ» About Me

Full-time Backend developer. I have been developing professionally since 2015 and going strongly.

πŸš€ Skills and Tools I Have Used and Learned

PHP, Core PHP, Laravel, Codigniter, Magento2, Wordpress, Html, CSS, Javascript, jQuery, Angular, React JS, MySQl, SQL, ZohoMail, Git, GutHub

πŸ€“ Learning daily new things.

πŸ“« How to reach me: djkatoch@gmail.com

πŸ˜„ Pronouns: He/His.

Pinned Loading

  1. swappingWithoutThirdVariable.php swappingWithoutThirdVariable.php
    1
    <?php
    2
      $firstVariable  = 45;   //first variable value
    3
      $secondVariable = 86;  //second variable value
    4
      echo "\n Before swapping:  ". $firstVariable . ',' . $secondVariable;
    5
      list($firstVariable, $secondVariable) = array($secondVariable, $firstVariable);
  2. Converting-timestamp-to-time-ago-in-PHP-e.g-1-day-ago-2-days-ago Converting-timestamp-to-time-ago-in-PHP-e.g-1-day-ago-2-days-ago Public

    Converting timestamp to time ago in PHP e.g 1 day ago, 2 days ago…

    PHP 1

  3. ajax-submit-by-jquery ajax-submit-by-jquery Public

    Ajax submit jquery code

    JavaScript 1

  4. create-customer-using-GuzzleHttp-Client-to-create-customer-using-graphql-api-in-shopify create-customer-using-GuzzleHttp-Client-to-create-customer-using-graphql-api-in-shopify Public

    Create customer using GuzzleHttp\Client to create customer using graphql api in shopify

    PHP 1

  5. How-to-import-large-data-using-mysql-php-batchwise How-to-import-large-data-using-mysql-php-batchwise Public

    Import or Fetch large data batch wise using MySQL PHP

    PHP 1

  6. how-to-import-mysql-database-using-ssh-command-line how-to-import-mysql-database-using-ssh-command-line Public

    Servers without a control panel (like cPanel or Plesk) don't have phpMyAdmin installed. To manage databases without a control panel, you need to use the SSH command line to import .SQL backup files.

    1