2014-07-11 81 views
-1

如何獲得php回聲裏面的$測試值?PHP回聲裏面的回聲和文本框

線7:

<?php function writeMsg() { 
echo "</form>"; 
echo "<form name='input' action='index.php' method='get'>"; 
echo "<table border='0' cellpadding='0' cellspacing='0' width='600' height='400'>"; 
echo "<tr>"; 
echo "<td height='560'><textarea class='textarea' name='xml' cols='83' rows='37'>"; 
echo "$test"; 
echo "</textarea></td>"; 
echo "</tr>"; 
echo "<tr>"; 
echo "<td height='40' align='center'><input type='submit' value='PRENESI XML'></td>"; 
echo "</tr>"; 
echo "</table>"; 
echo "</form>"; 
} 
?> 

任何解決方案將是巨大的。謝謝

+0

不要把在「」只是做回聲$測試 – KamRon

+0

這個問題沒有意義了我。請澄清一下你想達到的目標。 – MightyPork

+0

@KamRon這是廢話,這將工作,如果$測試有任何價值。 – MightyPork

回答

2

從字面上看OP的例子,需要定義$test以便echo輸出任何東西。另外,除非被調用,否則該函數將不會執行任何操作。

function writeMsg() { 
    $test = "foo"; 
    echo "$test"; 
} 
writeMsg(); 

輸出:

foo