Skip to content

Instantly share code, notes, and snippets.

View code-boxx's full-sized avatar
🏠
Working from home

Code Boxx code-boxx

🏠
Working from home
View GitHub Profile
@code-boxx
code-boxx / 0-PHP-IMPORT-EXCEL-MYSQL.MD
Last active May 26, 2023 03:19
PHP Import Excel Into MYSQL

IMPORT EXCEL INTO MYSQL

https://code-boxx.com/import-excel-into-mysql-php/

NOTES

  1. GIST does not allow XLSX files. Convert 2b-dummy.csv to 2b-dummy.xlsx on your own, or generate your own dummy data.
  2. A copy of PHPSpreadsheet is not included, please download your own - composer require phpoffice/phpspreadsheet.
  3. Create a test database and import 2a-dummy.sql.
  4. Change the database settings in 3-import.php to your own, then launch it in the browser.

LICENSE

@code-boxx
code-boxx / 0-PHP-ARRAY-STRING.MD
Last active May 26, 2023 03:21
PHP convert array to string

PHP CONVERT ARRAY TO STRING

https://code-boxx.com/convert-array-string-php/

LICENSE

Copyright by Code Boxx

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

@code-boxx
code-boxx / 0-PHP-READ-FILES.MD
Last active May 26, 2023 03:21
PHP Read Files

WAYS TO READ FILES IN PHP

https://code-boxx.com/php-read-file/

LICENSE

Copyright by Code Boxx

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

@code-boxx
code-boxx / 0-PHP-COPY-FOLDER.MD
Last active May 26, 2023 03:24
PHP Copy Entire Folder

PHP COPY ENTIRE FOLDER

https://code-boxx.com/copy-folder-php/

LICENSE

Copyright by Code Boxx

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

@code-boxx
code-boxx / 0-PHP-INCLUDE-FILE.MD
Last active May 26, 2023 03:25
PHP Include File From Another Folder

PHP INCLUDE FILE FROM ANOTHER FOLDER

https://code-boxx.com/include-another-folder-php/

NOTES

GIST does not allow folders. Create a lib/ folder and put 3b 4b 5b inside.

LICENSE

Copyright by Code Boxx

Permission is hereby granted, free of charge, to any person obtaining a copy

@code-boxx
code-boxx / 0-PHP-WATERMARK.MD
Last active May 1, 2024 19:11
PHP add watermark to image

PHP ADD WATERMARK TO IMAGE

https://code-boxx.com/add-watermark-php/

IMAGES

source watermark

NOTES

  1. Make sure that the GD extension is enabled in php.iniextension=gd (or gd2 prior to PHP8).
  2. For the text watermarks, change the font file $fontFile to your own.
@code-boxx
code-boxx / 0-PHP-VAR-HTML.MD
Last active May 26, 2023 03:27
Display PHP Variable in HTML

HOW TO DISPLAY PHP VARIABLES IN HTML

https://code-boxx.com/display-php-variables-in-html/

LICENSE

Copyright by Code Boxx

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

@code-boxx
code-boxx / 0-PHP-REMOVE-HTML.MD
Last active May 26, 2023 03:28
PHP Remove HTML Tags

REMOVE & STRIP HTML TAGS IN PHP MYSQL

https://code-boxx.com/remove-html-tags-php-mysql/

NOTES

  1. Create a test database and import 1-database.sql.
  2. Change the database settings in 2-remove-html.php to your own and launch it in the browser.
  3. Alternatively, import 3a-strip-tag.sql for the stored MySQL function and check out 3b-insert.sql.

LICENSE

Copyright by Code Boxx

@code-boxx
code-boxx / 0-PHP-VERSION.MD
Last active May 26, 2023 03:29
Check PHP Version

WAYS TO CHECK PHP VERSION

https://code-boxx.com/check-php-version/

LICENSE

Copyright by Code Boxx

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

@code-boxx
code-boxx / 0-PHP-EXAMPLE-WEBSITE.MD
Last active March 25, 2024 04:45
HTML CSS Javascript PHP MySQL To Build A Website

USE HTML CS JS PHP MYSQL TO BUILD A WEBSITE

https://code-boxx.com/use-html-css-javascript-php-mysql/

IMAGES

book

NOTES

  1. This tutorial is not a "5 mins web development crash course". Please go through the proper basic HTML/CSS/Javascript tutorials.
  2. Create a dummy database and import 1-products.sql.
  3. Change the database settings in 2-products.php to your own.