Nah, if you're like me you need to set 

try_working_less_than_18_hours_a_day=On

in the [LifeGoals] section

:-)


Marco
-- 
------------
php|architect - The magazine for PHP Professionals
The first monthly worldwide magazine dedicated to PHP programmers

Come visit us at http://www.phparch.com!
--- Begin Message --- Boy do I REALLY need some coffee...one query was on the production database, the other was on the development copy. I suppose I should set the programmer_first_check_database_parameter_you_idiot setting in php.ini...

Sorry for consuming unnecessary list space.

<sound of head meeting door jamb repeatedly>

-steve



I have a query oddity that looks like an integer overflow, but it shouldn't be.

Excerpt from my program:

<snip>

#DEBUG
echo "\n<br>$Query<br>\n";
#DEBUG

$hResult = _do_query(__LINE__, $Query); # _do_query() simply executes mysql_query, and does nice error formatting if necessary
$First = true;

while ($Row = @mysql_fetch_array($hResult)) {

if ($First) {
$First = false;
show_table_open($Myself);
}

echo
'<tr bgcolor="', $TableColor['row1'], '">',
'<td>', $Row['source_code'], '</td>',
'<td>', $Row['chromo_code'], '</td>',
'<td>', $Row['type'], '</td>',
'<td align="right">', number_format($Row['min_exon_length']), '</td>',
'<td align="right">', number_format($Row['max_exon_length']), '</td>',
# '<td>', $Row['min_exon_length'], '</td>',
# '<td>', $Row['max_exon_length'], '</td>',
"</tr>\n";

}

<snip>

<SNIP>


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


--- End Message ---
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to