You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$q="select p.rno as rno,p.fname as fname,c.cname as cname from tbstud p , tbcompany c where p.rno=$rno and p.tenth>=c.tenthr and p.twelth>=c.twelthr and p.grad>=c.gradr";
$result=mysqli_query($db,$q);
while($row = mysqli_fetch_array($result))
{
extract($row);
echo "The Roll no is $rno and the name of the candidate is $fname the companies names are $cname<br><br>";