I've got a column inside my database "#", I would like to increment that for each insert statement I do.
$sql = "INSERT INTO card (#,creditCard, expdate, cvv)
VALUES ('','$creditCardStore','2020-01-01','$cvv')";
I can't alter the table to use AUTO INCREMENT.
I found this on the web but i don't know what to put inside the for(..)
$value = 1;
for(...){
$sql = 'INSERT ...';
$value++;
}