Dear All,,
I need ur help regarding the below matter....
I had a form having 40 fields comming from 4 tables...
I want to let the user to search a record using any of these 40 fields...
For that i joined these tables using the "join" statement...
Now the problem starts...
I can' t retreve the fields that satisfying the join query..
&query_join="...query....";
$result_join=mysql_query($query_join);
and after that when i try to save the result to $row using
while($row_join=mysql_fetch_array($result_join))
{
$J_name=$row_join; }//
after that when i try to display the $J_name variable it is not displaying any value....
when i echoed the query it is displaying correctry and there is no error...
and also the echo $result_join; gives resourse id #4;;;;;
I can't find any reason y the variable $j_name is not printing any value...
Please help me....