Notice
Recent Posts
Recent Comments
Tags
- 하드 마이그레이션
- XSS PHP
- 404에러페이지
- javascript 바코드스캔
- TempData
- asp.net dropdownlist
- 하드 윈도우 복사
- 강제이동
- javascript 바코드 생성
- SSD 복사
- 파일업로드 체크
- 말줄임표시
- ViewData
- ASP.Net Core 404
- 맥 오라클설치
- ViewBag
- javascript redirection
- XSS방어
- 바코드 생성하기
- php 캐쉬제거
- javascript 유효성체크
- 바코드 스캔하기
- django 엑셀불러오기
- asp.net Select
- jquery 바코드생성
- asp.net core Select
- 타임피커
- Mac Oracle
- 파일업로드 유효성체크
- jquery 바코드
웹개발자의 기지개
[PHP] mysql 초성검색 본문
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
if ($cho == "ㄱ") {
$keyGap .= " and substr(name,1,1) between '가' and '낗'";
} else if ($cho == "ㄴ") {
$keyGap .= " and substr(name,1,1) between '나' and '닣'";
} else if ($cho == "ㄷ") {
$keyGap .= " and substr(name,1,1) between '다' and '띻'";
} else if ($cho == "ㄹ") {
$keyGap .= " and substr(name,1,1) between '라' and '맇'";
} else if ($cho == "ㅁ") {
$keyGap .= " and substr(name,1,1) between '마' and '밓'";
} else if ($cho == "ㅂ") {
$keyGap .= " and substr(name,1,1) between '바' and '삫'";
} else if ($cho == "ㅅ") {
$keyGap .= " and substr(name,1,1) between '사' and '앃'";
} else if ($cho == "ㅇ") {
$keyGap .= " and substr(name,1,1) between '아' and '잏'";
} else if ($cho == "ㅈ") {
$keyGap .= " and substr(name,1,1) between '자' and '찧'";
} else if ($cho == "ㅊ") {
$keyGap .= " and substr(name,1,1) between '차' and '칳'";
} else if ($cho == "ㅋ") {
$keyGap .= " and substr(name,1,1) between '카' and '킿'";
} else if ($cho == "ㅌ") {
$keyGap .= " and substr(name,1,1) between '타' and '팋'";
} else if ($cho == "ㅍ") {
$keyGap .= " and substr(name,1,1) between '파' and '핗'";
} else if ($cho == "ㅎ") {
$keyGap .= " and substr(name,1,1) between '하' and '힣'";
}
|
cs |
'PHP' 카테고리의 다른 글
[PHP] 태그사이의 공백제거, 엔터키 개행문자 제거 - 정규표현식 (0) | 2022.09.19 |
---|---|
[PHP] CSV 파일을 DB에 삽입하기 (0) | 2022.06.19 |
[PHP] 다량의 문자열내용중에 특정 문자열 교체하기 (0) | 2022.05.02 |
[PHP] 파일 다운로드시 ERR_INVALID_RESPONSE 에러날때 (0) | 2022.04.01 |
[PHP] 날짜 관련 내용 정리 (0) | 2021.11.11 |
Comments