Files

28 lines
518 B
PHP
Raw Permalink Normal View History

2024-04-27 09:23:34 +02:00
<?php
function formatPDFPositions($positions, $focus) {
$result = array();
foreach ($positions as $pos) {
$pos['position'] = intval($pos['position'])+1;
$pos['quantity'] = $pos['quantity'];
$pos['price']=format_number($pos['price']);
$pos['total']=format_number($pos['total']);
$result[] = $pos;
}
return $result;
}
function mysql_escape_gpc($dirty)
{
if (ini_get('magic_quotes_gpc'))
{
return $dirty;
}
else
{
return mysql_real_escape_string($dirty);
}
}