<?php
$l=mysql_connect('localhost','root','aaaa') or die('can\'t connect');
mysql_select_db('test', $l);
mysql_query('create temporary table cccc(id int);');
mysql_query('insert into cccc values(5),(5),(5),(5),(5);');
$r=mysql_query("select * from cccc");
while($w=mysql_fetch_array($r)){
echo $w[0].'<br />';
}
mysql_close($l);
?>#this point
questions
1-if 2 users access the site concurrently each one has his own cccc table
2-does cccc get dropped at #this point
a break line tag is next to $w[0]
$l=mysql_connect('localhost','root','aaaa') or die('can\'t connect');
mysql_select_db('test', $l);
mysql_query('create temporary table cccc(id int);');
mysql_query('insert into cccc values(5),(5),(5),(5),(5);');
$r=mysql_query("select * from cccc");
while($w=mysql_fetch_array($r)){
echo $w[0].'<br />';
}
mysql_close($l);
?>#this point
questions
1-if 2 users access the site concurrently each one has his own cccc table
2-does cccc get dropped at #this point
a break line tag is next to $w[0]