这是我的代码。提交表格后,它只是显示空白。它在 localhost 服务器上运行良好,但在实时服务器上却不行。
<?php
session_start();
require_once("codelibrary/inc/variables.php");
require_once("codelibrary/inc/functions.php");
$name = $_POST['name'];
$age = $_POST['age'];
$add = $_POST['add'];
$no = $_POST['no'];
$mob = $_POST['mob'];
$mail=$_POST['mail'];
if($_POST['save'] == "Submit")
{
$_SESSION['sess_msg']='Thanks.Your info.has been saved.';
$result=add_user($name,$age,$add,$no,$mob,$mail);
header("location: join.php");
exit();
}
?>