初心者~~スマートなフォームの値の受け渡しの問題
基本的な値の受け渡しを試してみたいのですが...
なぜ未定義なのですか?最初は、両方のページが新しいオブジェクトをインスタンス化していると思いました~~ それから、next.php の $smarty = new Smarty; を削除しました~~ しかし、さらに間違いを見つけました~~ Smarty は初めてです~~~ アドバイスをお願いします~~
注意: 未定義の定数 get の使用 - C:wampwwwsmartydemonext.php の 12 行目で 'get' とみなします
index.php
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php /** * Example Application * @package Example-application */ require('../libs/Smarty.class.php'); $smarty = new Smarty; ?> <form action="next.php" method="get"> <label for="page"></label> <input type="text" name="page" id="page" /> <input type="submit" name="submit" id="submit" value="提交" /> </form>
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php /** * Example Application * @package Example-application */ require('../libs/Smarty.class.php'); $smarty = new Smarty; {$smarty.get.page;} ?>