我有一個名爲emp.php
頁面中,我有以下代碼沒有導航的形式行動包括
<form action="emp-action" method="post" enctype="multipart/form-data">
include("conn.php");
$sud=$_SESSION['login_user'];
$sqlc=mysql_query("SELECT * FROM emp where un='".$sud."' ");
$countc=mysql_num_rows($sqlc);
if($countc<99)
{
include("inc-profile.php");
}
else
{
echo "SORRY !!!!you have posted more than 100 jobs";
}
</form>
現在,這是正常工作,並導航到inc-profile
頁根據條件
在inc-profile.php
頁我有
<form action="include-action" method="post" enctype="multipart/form-data">
//some codes
</form>
,而是形成動作不nvigating到include-action.php
頁面,但navig阿婷emp-action.php
頁面..What可能是錯誤 PLZ不是我已刪除了.PHP
與幫助.HTACCES
嗯,可能是顯而易見的,但你缺少'在session_start()'前'$ _SESSION'。 –
**危險**:您正在使用[an **過時的**數據庫API](http://stackoverflow.com/q/12859942/19068),並應使用[現代替換](http:// php。淨/手動/ EN/mysqlinfo.api.choosing.php)。您可能也會受到[SQL注入攻擊](http://bobby-tables.com/)**的影響,即現代API會使[防禦]變得更容易(http://stackoverflow.com/questions/) 60174/best-way-to-prevent-sql -injection-in-php)自己從。 – Quentin
看來你是嵌套形式。避免這種情況,這違反了HTML標準規範 –