PHP22 PHP foreach문 foreach (array as $item) { } //설명 foreach (배열 as $변수명) { } //다른 버전 foreach foreach (array as $item): //item 순회 처리 endforeach; 2020. 7. 31. PHP 객체 생성 메서드 호출 $myOBject = new SomeClass(); //객체 생성 $myObject->someMethond(); //메서드 호출 2020. 7. 12. PHP란 PHP는 서버 사이드 스크립트 프로그래밍 언어이다. 많은 사이트 중 30% 이상 정도가 PHP를 쓰고 있다고 알려져있다. 유명한 CMS는 다 PHP로 만들어졌다. 현재도 새로운 버전이 나오고 있으며 대부분의 서버에서 호환이 된다. 페이스북이 처음에 PHP로 만들어졌다. 2020. 7. 12. PHP 폼 컨트롤 폴더 구조 public ㄴform.css ㄴindex.php templates ㄴform.html ㄴwelcome.html if (!isset($_POST['firstname'])) { include __DIR__ . '/../templates/form.html.php'; } else { $firstName = $_POST['firstname']; $lastName = $_POST['lastname']; if ($firstName == 'K' && $lastName == 'G') { $output = '환영합니다 K G 님'; } else { $output = htmlspecialchars($firstName,ENT_QUOTES,'UTF-8').' '. htmlspecialchars($lastName,E.. 2020. 7. 11. 이전 1 2 3 4 ··· 6 다음