View Single Post
Old 11-26-2012, 05:50 PM   PM User | #8
Fou-Lu
God Emperor


 
Fou-Lu's Avatar
 
Join Date: Sep 2002
Location: Saskatoon, Saskatchewan
Posts: 15,752
Thanks: 4
Thanked 2,468 Times in 2,437 Posts
Fou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to all
Comment out the entire echo in the loop. Add this instead and post the results you get (drag it from source to keep it formatted):
PHP Code:
$i 0;
while(
$result=sqlsrv_fetch_array($resource))
{
    print 
str_pad('[Start ' $i ']'30'-'STR_PAD_BOTH) . PHP_EOL;
    
var_dump($result['DateEntered'], $result['DateUpdated']);
    print 
str_pad('[End ' $i++ . ']'30'-'STR_PAD_BOTH) . PHP_EOL PHP_EOL;
// your commented out code would be here.

Fou-Lu is offline   Reply With Quote