Jump to content
xt:Commerce Community Forum

Kundennummer startwert


Blackscorpio

Recommended Posts

Moinsen,

ich hab ein kleines problem. Bei mir gibts bereits eine Modifikation der Kundennr vergabe. Allerdings fehlt mir noch die Bestimmung des Startwertes.

Hier mal der Mod:


//KDNR

$kunr = "";
if( $kunr == "" )
{
$cid_query = xtc_db_query("select counter from counter_cid where id = '1'");
$cid_data = xtc_db_fetch_array($cid_query);
$counter_stand_alt = $cid_data['counter'];
$counter_stand_neu = $counter_stand_alt + 1;
$cid_update = xtc_db_query("UPDATE counter_cid SET counter='".$counter_stand_neu."' where id = '1'");
$kunr = 'K'.$counter_stand_neu;
$chkunr = $kunr;
}
$sql_data_array['customers_cid'] = $chkunr;
$_SESSION['customer_cid'] = $chkunr;
xtc_db_perform(TABLE_CUSTOMERS, $sql_data_array);

//KDNR
[/PHP]

Könnte mir jemand sagen wo und wie ich die Startzahl bestimmen kann?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...