Question : cropping image shading

Could someone please crop these four images so that they do not have any shadowing?
http://www.topsecurityinc.com/content_r1_c1.gif
http://www.topsecurityinc.com/content_r1_c3.gif
http://www.topsecurityinc.com/content_r3_c1.gif
http://www.topsecurityinc.com/content_r3_c3.gif

Answer : cropping image shading

try this - I tested it on one of my dev servers and it does what you want (adding some error checking would be good)
1:
2:
3:
4:
5:
6:
7:
8:
$vQuery = mysql_query('SHOW TABLES');
while($vTable = mysql_fetch_array($vQuery)){
  print 'Table: '.$vTable[0].'<br />';
  $vQuery2 = mysql_query('SHOW COLUMNS FROM '.$vTable[0]);
  while($vField = mysql_fetch_array($vQuery2)){
    print ' - '.$vField[0].'<br />';
  }
}
Random Solutions  
 
programming4us programming4us