23 lines
432 B
PHP
23 lines
432 B
PHP
<?php
|
|
function formatPDFPositions($positions, $focus) {
|
|
$result = array();
|
|
foreach ($positions as $pos) {
|
|
$pos['position'] = intval($pos['position'])+1;
|
|
$pos['quantity'] = number_format($pos['quantity'],0);
|
|
$result[] = $pos;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
function mysql_escape_gpc($dirty)
|
|
{
|
|
if (ini_get('magic_quotes_gpc'))
|
|
{
|
|
return $dirty;
|
|
}
|
|
else
|
|
{
|
|
return mysql_real_escape_string($dirty);
|
|
}
|
|
} |