因此,我想在id =「id_input」中編寫一個鏈接,當我按下按鈕名稱=「b」時,我希望該鏈接轉到page2.php行$ HTML-> LOAD_FILE();然後將page2.php中的變量$ slbl傳遞給textarea name =「desc_name」中的page1.php。將數據從HTML傳遞到PHP並返回到HTML
我是網絡編程的新手,我正在學習,所以請你向我解釋一下。 我嘗試了所有我能找到但沒有成功的東西。因爲這個例子我需要解釋。
page1.php中
<html>
<body>
<?php
include ("page2.php");
?>
<form action="page1.php" method="post" enctype="multipart/form-data">
<div>
<div><textarea name="desc_name" rows="7" cols="50" id="id_desc" value="<?php echo (isset($slbl))?$slbl:'';?>"></textarea></div>
<div><input id="id_input" type="text" name="name_input" size="50">
<button name="b" type="button">Button</button></div>
<div>
<div><input type="submit" name="submit" value="Publish"></div>
</div>
</form>
</body>
</html>
<?php
...code for saving in mysql...
?>
使page2.php
<?php
include ("simple_html_dom.php");
// Create DOM from URL or file
$html = new simple_html_dom();
$html->load_file(<!--i need here url from id="id_input"--!>);
$html = $html->find('.summary_text', 0);
$html2 = strip_tags($html);
$html2 = trim($html2);
$slbl = $html2;
?>
你得到什麼錯誤? –
@ Mr.Engineer我沒有得到任何錯誤我只是不知道接下來用我的代碼做什麼... –