SQLInjection 대응을 위해 파일 상단부에 $_POST, $_GET의 원하는 변수 타입명 지정
This commit is contained in:
@@ -6,8 +6,8 @@ $id = $_POST[id];
|
||||
$pw = $_POST[pw];
|
||||
$name = $_POST[name];
|
||||
$name = _String::NoSpecialCharacter($name);
|
||||
$pic = $_POST[pic];
|
||||
$character = $_POST[character];
|
||||
$pic = (int)$_POST[pic];
|
||||
$character = (int)$_POST[character];
|
||||
|
||||
$leader = floor($_POST['leader']);
|
||||
$power = floor($_POST['power']);
|
||||
|
||||
Reference in New Issue
Block a user