웹마스터 팁
page_full_width">
mysql 을 이용한 사용자 인증 4 (index.htm 인증후 바로 넘기기)
2005.12.15 18:06
<?
include "./auth.inc";
?>
<html>
<head>
<title> 사용자 인증예제</title>
</head>
<body>
<?
$username=$userinfo[0];
$username=$userinfo[1];
echo("<script> //window.alert 삭제했음.
location.href='index2.htm' //이 부분 주의 깊게 볼것.<script>는 반드시 넣어야됨.
</script>
");
?>
</body>
</html>
include "./auth.inc";
?>
<html>
<head>
<title> 사용자 인증예제</title>
</head>
<body>
<?
$username=$userinfo[0];
$username=$userinfo[1];
echo("<script> //window.alert 삭제했음.
location.href='index2.htm' //이 부분 주의 깊게 볼것.<script>는 반드시 넣어야됨.
</script>
");
?>
</body>
</html>