- 0
- gimmepoint
- 조회 수 139
최근에 이 글을 보고 다음팟플레이어로 채팅을 치고 싶어서 따라해봤는데요
init.html
<form action="th.php" method="post">
<p>트위치 아이디: <input type="text" name="id" /></p>
<p><input type="submit" /></p>
</form>
th.php
<!DOCTYPE html>
<html lang="ko">
<meta http-equiv='refresh' content='0;url=https://go.twitch.tv/popout/<?php echo htmlspecialchars($_POST['id']); ?>/chat'>
</html>
이런식으로 리다이렉트 되네요 ㅠㅠ
제가 php를 잘 몰라서 여러방면으로 감색해봤지만
<!DOCTYPE html>
<html lang="ko">
<meta http-equiv='refresh' content='0;url=https://go.twitch.tv/popout/<? php echo htmlspecialchars($_POST[\'id\']); ?>/chat'>
</html>
<!DOCTYPE html>
<html lang="ko">
<meta http-equiv='refresh' content='0;url=https://go.twitch.tv/popout/<? php echo $_POST['id']; ?>/chat'>
</html>
등등 여러 방법을 시도해봤지만 다 안되네요.....
https://go.twitch.tv/popout/(입력한 내용)/chat 으로 최종적으로 리다이렉트시키는게 제 목표인데 가능할까요?