Blackscorpio Posted July 4, 2008 Report Share Posted July 4, 2008 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.