我需要一個幫助。我需要在使用PHP提交表單後重新加載頁面。我在下面解釋我的代碼。使用PHP和Javascript提交表單後重新載入頁面
$insert = $this->modl_obj->db_insert('db_newsletter',$values, $columns);
if($insert !=false){
$GLOBALS['msg']='1';
}
function messagestatus(st){
switch(st)
{
case 1:
{
alert("Inserted Successfully.");
break;
}
}
}
messagestatus(<?php echo $GLOBALS['msg'] ?>);
在這裏,我需要重新加載警告消息後的頁面。這種形式出現在以下鏈接的許多頁面中。
http://localhost/takeme
http://localhost/takeme/about
請幫我解決這個問題。
使用位置.reload();'。在提醒後寫下來。 –