Auto Increment [ai]

eMmm bikin fungsi auto increment sendiri untuk field id via php, curhatnya ntar lagi aja ngantuk mo bo2 dulu ah di mushola ^_^

function id()
{
$sq = “select ifnull(max(id_ticket)+1,’1′) from ticket”;
$qu = mysql_query($sq);
$y = mysql_fetch_array($qu);
$x = $y[0];
return $x;
}

Posted: November 10, 2006 Comments (5)