윈도우 11 WSL PHP 서버 셋팅하기 (nginx + php-fpm + mysql)
·
Programming/PHP
윈도우 11 환경에 WSL을 이용해서 php 개발 환경을 구죽해보겠습니다. WSL 세팅에 관한 포스팅은 https://raycho-dev.tistory.com/153 Windows 에 WSL2로 Docker 엔진 설치 하는 방법?WSL2 환경에 Docker를 구축하는 방법은 크게 'Docker Desktop for Windows'를 설치하여 연동하는 방법과 WSL2(Linux) 내부에 직접 Docker Engine을 설치하는 방법이 있습니다. 윈도우 리소스를 덜 차지하고 더 가볍raycho-dev.tistory.com 1. nginx 설치sudo apt-get install nginx 설치 확인-- 버전확인nginx -v-- 실행sudo service nginx start-- 상태확인sudo serv..
[PHP] MySQL 사용 기초 클래스(BasicMySQL)
·
Programming/PHP
BasicMySQLPHP에서 MySQL 을 사용하기 위한 기초 클래스host=$host; $this->user=$user; $this->pass=$pass; $this->name=$name; $this->DBconnect(); } /** * Establishes connection to MySQL server and selects a database * @return void * @access private */ private function DBconnect() { // Make connection to MySQL server try { $this->con = mysqli_c..
[PHP] 사진 파일 업로드
·
Programming/PHP
PHP 파일 업로드 구현하기 입력폼 input.php ​입력폼 input.phpPhoto 업로드 파일을 받아서 처리하는 페이지 처리폼 upload.php