PHP header(”Location: xxxxx”)が動作しない
header(“Location: xxxxx”)が動作しない
下記のように書いていて5分ぐらいはまった。。
header("Location : xxxxx")
Locationと:の間にスペースがあったからなのね。。
スペース削除
header("Location: xxxxx")
関連記事
javascript jqueryのappendToはIEでは使えない?
jqueryのappendToはIEでは表示されなかったので、 appendだけで対応した。 そういうものなのか?
PHP + PostgreSQL データの取り出し
PHP + PostgreSQL データの取り出し while( $one = pg_fetch_assoc($res) ){ $use...
Allowed memory size of xxx bytes exhausted (tried to allocate xxx bytes)
Allowed memory size of xxx bytes exhausted (tried to allocate xxx byt...
mixiのhideのプロフィール画像を変更するWebサービス
mixiのhideのプロフィール画像を変更するWebサービス 私のmixiのプロフィール写真を誰でも変更できてしまうサービスです...
CodeIgniter2.0.3 pg_escape_stringが変?
pg_escape_stringが変? CodeIgniter2.0.3で文字(1文字)をpg_escape_stringすると、お尻に半...
Zend Framework データベース(postgresql)接続設定
application/configs/application.iniの [production]に下記を追加 resources.db...
JavaScript 送信(submit)ボタンダブルクリック防止(禁止)
JavaScript 送信(submit)ボタンダブルクリック防止(禁止) ボタン クリックしたらsend()実行するようにする ...
from unknown error: missing or invalid ‘entry.level’
PythonでChromeを操作しようとしたら、下記のようなエラーがでて動かない。 from unknown error: missi...