로그인 문제
- 07-21
- 4,811 회
- 1 건
모듈은 없음(비회원으로 선택하고)
PATH: htdocs/chatting/noname/
URL: <A HREF="http://...../chatting/noname/" TARGET="_blank" rel="nofollow">http://...../chatting/noname/</A>
으로 선택하고
noname/에 index.php를 만들었습니다.
여기까지는 알겠는데 index.php에 구체적으로 무얼 적어 넣어야 되는지요?
설명서에는
...참고로, noname 이라는 폴더에서 index.php 를 디자인하시면 비회원에서 닉네임 입력하는 부분을 이쁘게 꾸며 사용할수 있습니다. ....
비회원에서 닉네임을 입력하는 부분을 만들어야 된다는데,,
다음과 같이 했는데도...
-------------------------------------
<html>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<link rel="stylesheet" href="main.css">
<head><title>로그인</title></head>
<body bgcolor="#ffffff" topmargin=120 leftmargin=0 marginwidth=0 marginheight=0>
<center>
<table border=0 cellspacing=0 cellpadding=0 width=400>
<form method="post" action="../init.php">
<tr>
<td align=center bgcolor="#dfdfdf">
<table border=0 cellspacing=1 cellpadding=5 width=400>
<tr>
<td align=center bgcolor="#d8d8d0" colspan=2> <b>채팅방 </b> </td>
</tr>
<tr>
<td align=right bgcolor="#ffffff" width=130>닉네임</td>
<td bgcolor="#ffffff" width=300><input type=text name="temppw" value="" size=30 maxlength=8> </td>
</tr>
<td align=center bgcolor="#ffffff" colspan=2>
<input type="submit" name="Yes" value=" 확 인 ">
<input type="reset" name="No" value=" 취 소 ">
</td>
</tr>
</table>
</td>
</tr>
</form>
</table>
<center>
</body>
</html>
-----------------------------------------------------------------------------
1. 여기서 action부분을 어디로 줘야 합니까? 걍 ../init.php로 주면 됩니까?
2. 닉네임 값은 무엇입니까? connection/nothing/의 config.php를 보니
// pw,id 를 통해서 그냥 값 넘겨줍니다.
function get_nickname($tempid,$temppw,$_path,$_url)
{ // $tempid 는 사용자 IP , $temppw 는 실제 닉네임
// _path,_url 은 쓸모 없음
return $temppw;
}
?>
이렇게 적혀 있던데 그러면 닉네임은 <input type=text name="temppw ..> 이렇게 적어도 되나요?
구체적인 보기가 없어서 정말로 모듈을 nothing으로 선택할 시 난감하군요^^
PATH: htdocs/chatting/noname/
URL: <A HREF="http://...../chatting/noname/" TARGET="_blank" rel="nofollow">http://...../chatting/noname/</A>
으로 선택하고
noname/에 index.php를 만들었습니다.
여기까지는 알겠는데 index.php에 구체적으로 무얼 적어 넣어야 되는지요?
설명서에는
...참고로, noname 이라는 폴더에서 index.php 를 디자인하시면 비회원에서 닉네임 입력하는 부분을 이쁘게 꾸며 사용할수 있습니다. ....
비회원에서 닉네임을 입력하는 부분을 만들어야 된다는데,,
다음과 같이 했는데도...
-------------------------------------
<html>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<link rel="stylesheet" href="main.css">
<head><title>로그인</title></head>
<body bgcolor="#ffffff" topmargin=120 leftmargin=0 marginwidth=0 marginheight=0>
<center>
<table border=0 cellspacing=0 cellpadding=0 width=400>
<form method="post" action="../init.php">
<tr>
<td align=center bgcolor="#dfdfdf">
<table border=0 cellspacing=1 cellpadding=5 width=400>
<tr>
<td align=center bgcolor="#d8d8d0" colspan=2> <b>채팅방 </b> </td>
</tr>
<tr>
<td align=right bgcolor="#ffffff" width=130>닉네임</td>
<td bgcolor="#ffffff" width=300><input type=text name="temppw" value="" size=30 maxlength=8> </td>
</tr>
<td align=center bgcolor="#ffffff" colspan=2>
<input type="submit" name="Yes" value=" 확 인 ">
<input type="reset" name="No" value=" 취 소 ">
</td>
</tr>
</table>
</td>
</tr>
</form>
</table>
<center>
</body>
</html>
-----------------------------------------------------------------------------
1. 여기서 action부분을 어디로 줘야 합니까? 걍 ../init.php로 주면 됩니까?
2. 닉네임 값은 무엇입니까? connection/nothing/의 config.php를 보니
// pw,id 를 통해서 그냥 값 넘겨줍니다.
function get_nickname($tempid,$temppw,$_path,$_url)
{ // $tempid 는 사용자 IP , $temppw 는 실제 닉네임
// _path,_url 은 쓸모 없음
return $temppw;
}
?>
이렇게 적혀 있던데 그러면 닉네임은 <input type=text name="temppw ..> 이렇게 적어도 되나요?
구체적인 보기가 없어서 정말로 모듈을 nothing으로 선택할 시 난감하군요^^