- ベストアンサー
sessionで表示されません
<?php session_start(); ?> <html><body> <?php $_SESSION["bridge"]=1; $a=$_SESSION["bridge"]; print "$a"; ?> <a href="s2.php">2へ</a> </body></html> を書いたのですが、 ブラウザで見ても表示されません。 どこがもんだいなのでしょうか。 宜しくお願い致します。
- みんなの回答 (1)
- 専門家の回答
質問者が選んだベストアンサー
特に問題なく表示されると思いますが・・・文字コードはあってますか?また、 <?php session_start(); ?> <html><body> <?php $_SESSION["bridge"]=1; $a=$_SESSION["bridge"]; print "$a"; ?> <a href="s2.php">2へ</a> </body></html> の print "$a"; にはダブルクォーテーションは不要です。 print $a;で大丈夫です。