Codice PHP:/*
Adds an element to the list variable $listvar:
1[, 2, 3...]
*/
function mysql_addlist(&$listvar, $value)
{
if (strlen($listvar))
{
$listvar .= ', ' . $value;
}
else
{
$listvar .= $value;
}
}
Codice PHP:/*
Adds an element to the list variable $listvar:
1[, 2, 3...]
*/
function mysql_addlist(&$listvar, $value)
{
if (strlen($listvar))
{
$listvar .= ', ' . $value;
}
else
{
$listvar .= $value;
}
}
Segnalibri