実現したいこと
PHPから実行された別のPHPを別タブで実行したいです。
発生している問題・分からないこと
PHPから別のPHPを実行するのに「require」を使っているのですが、index.phpの中で「require」を実行、呼び出したtest.phpは別タブで実行したいのですが、、、
該当のソースコード
php
1index.php 2<?php 3 require("test.php"); 4?> 5 6<html> 7 <head> 8 <title>TEST</title> 9 </head> 10 11 <body> 12 <main> 13 <form action="" method="post"> 14 <textarea name="text" placeholder="Text"><?php echo htmlspecialchars($ReValue, ENT_QUOTES, 'UTF-8'); ?></textarea> 15 </form> 16 </main> 17 </body> 18</html> 19 20 21test.php 22<?php 23 $ReValue=”TEST”; 24?>
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
<form action="" method="post" target="_blank"> これだとindex.php内のPHPが別タブで実行してしまう。補足
特になし
回答3件
あなたの回答
tips
プレビュー