ユーザーの追加
useradd [ユーザー名]
パスワードの設定
# passwd [ユーザー名] Changing password for user ******* New UNIX password: ←入力する Retype new UNIX password: ←入力する passwd: all authentication tokens updated successfully. #
Just another Front-end Engineer
ユーザーの追加
useradd [ユーザー名]
パスワードの設定
# passwd [ユーザー名] Changing password for user ******* New UNIX password: ←入力する Retype new UNIX password: ←入力する passwd: all authentication tokens updated successfully. #
htmlのメタタグを出力してジャンプする。
ex.プライバシーポリシーなどの確認ページから押されたボタンによって異なるページを読み込むとき↓
if($confirm == "yes"){ echo("<META HTTP-EQUIV=Refresh CONTENT=0;URL='hogehoge.php'>\n"); }elseif($confirm == "no"){ echo("<META HTTP-EQUIV=Refresh CONTENT=0;URL='index.php'>\n"); }
“yes”なら hogehoge.php へ、
“no”なら index.php へジャンプします。
http://phpnet.blog91.fc2.com/blog-entry-19.html
http://tuevin.jugem.jp/?eid=51
http://blog.tommmmy.com/2007/03/post_3.html