Skip to content

Commit 55fb8bd

Browse files
author
lispro06
committed
encoding + 2 layer
1 parent 2e7a9e3 commit 55fb8bd

File tree

5 files changed

+65
-5
lines changed

5 files changed

+65
-5
lines changed

css/main.css

+18
Original file line numberDiff line numberDiff line change
@@ -591,4 +591,22 @@ div.ViewgBlock>div.loading
591591
-moz-opacity:0;
592592
opacity:0;
593593
background-color:#000;
594+
}
595+
596+
597+
/* 2 division*/
598+
.Area0 { width:100%; }
599+
600+
.Area1 {
601+
602+
float:left;
603+
width:15%;
604+
605+
}
606+
607+
.Area2 {
608+
609+
float:left;
610+
width:85%;
611+
594612
}

cust_srch.php

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ function getConnection($dbname,$dbpass){
1717
}
1818
$db = new DBConnection();
1919
$db->getConnection($dbname,$dbpass);
20+
mysql_query("set session character_set_connection=utf8;");
21+
mysql_query("set session character_set_results=utf8;");
22+
mysql_query("set session character_set_client=utf8;");
2023
include_once("functions.php");
2124
$sql = "select `CUST_CNUM`, `CUST_NAME`, `CUST_IDEN`, `CUST_HAND`, `CUST_MEMO` from `toto_customer` where `CUST_NAME` LIKE '%" . $_GET["cust_name"]."%'";
2225
$handle = mysql_query($sql);

0 commit comments

Comments
 (0)