2012-03-01 81 views
0

joomla 1.7我有僱主和求職者。僱主可以看到求職者簡介頁面。我還使用僱主帳戶查看求職者個人資料頁面。我在數據庫的求職者表上插入了一個字段,以查看我是否採訪了那位求職者。我拉出,可以看到個人資料頁面上$採訪數據,而且還我想編輯的個人資料page.What我不明白,數據查詢和插入codes.here的形式如何插入joomla 1.7

<form action="<?php echo JURI::current(); ?>" method="post"> 
<table> 
<tr> 
<td>interview:</td> 
<td><input class="inputbox" type="text" name="interview" id="interview"  
size="50" maxlength="100" value="<?php echo $jobseeker->interview; ?>" /></td> 
</tr> 
</table> 
<input type="submit" value="Save" class="button" /> 
</form> 

感謝前進..

+0

這個問題也是我感興趣的。雖然我可以使用Joomla以外的SQL和PHP將數據添加到數據庫,但我似乎無法在Joomla中使用它。 Ay對這個問題的幫助非常感謝。 – nicorellius 2012-03-03 22:42:25

+0

哪裏是INSERT代碼? – alfasin 2012-03-04 06:46:17

+0

檢出http://docs.joomla.org/Accessing_the_database_using_J數據庫 – 2012-03-05 14:06:17

回答

0

在Joomla中開發一個表單時,你必須記住表單的動作應始終爲index.php這是爲了確保只有一個到該網站的入口點。

接下來,表格一般會提交到controller,該表格從JController或其任何子類別延伸。你可以在你的形式介紹了以下標準的隱藏字段實現這一點 -

<input type="hidden" name="option" value="com_yourComponentName" /> 
<input type="hidden" name="task" value="yourController.yourFunction" /> 

然後在控制器類編寫相應的處理代碼。