我得到了结果。但我为每个人创建了 2 个不同的配置文件。但我得到了这两个人的相同个人资料详细信息。例如:sam 和 john 有不同的个人资料详细信息。但是当我打开 sam 的个人资料详细信息时,它会显示 john 的个人资料详细信息。实际上,它在每个不同的配置文件中都显示了一个细节。帮我。
“这是我的问题”
if(isset($_GET["employeecode"])){
$employeecode=$_GET["employeecode"];
require_once("dbconfig.php");
$query = ("select t1.employeecode,t1.panno,t1.employeename,t1.esino,t1.designation,t1.paiddays,t1.department,t1.lopdays,t1.bank,t1.bankname,t1.pfno,t1.location,
t2.v, t2.w,t2.x,t2.a,t2.b,t2.c,t2.d,t2.e,t2.f,t2.g,t2.h,t2.i,t2.j,t2.k,t2.l,t2.m,t2.n,t2.o,t2.p,t2.q,t2.r,t2.s,t2.t,t2.u,
t3.total, t3.totals,t3.totalss,t3.netsalary,t3.amount,t3.mode
FROM invoice t1,salaries t2,total1 t3
WHERE t1.employeecode = t2.employeecode AND t2.employeecode = t3.employeecode");
$result = mysql_query($query,$con) or die(mysql_error());
if(mysql_num_rows($result)>0){
$row = mysql_fetch_array($result);