$qury=select some thing from something where name ='john';
arra=fetch_array($qury);
echo arra['name'];
so if i got this code and then down on my page i just do this
$qury=select some thing from something where name ='juan';
arra=fetch_array($qury);
echo arra['name'];
will that mess with my cod in any way? becuase it does print the other name but since the variable and the query is the same would that bring any problem?