cartupdate.php에서 장바구니 테이블에 필드 추가 질문
본문
$sql = " INSERT INTO {$g5['g5_shop_cart_table']}
( od_id, mb_id, it_id, it_name, it_sc_type, it_sc_method, it_sc_price, it_sc_minimum, it_sc_qty, ct_status, ct_price, ct_point, ct_point_use, ct_stock_use, ct_option, ct_qty, ct_notax, io_id, io_type, io_price, ct_time, ct_ip, ct_send_cost, ct_direct, ct_select, ct_select_time )
VALUES ";
cartupdate.php 에 있는 코드입니다. item.form.skin.php에서 POST로 값을 하나 전송했고 그 값이 cartupdate.php 에서 전송된 것까지 확인했습니다
이제 cartupdate.php 에서 다루는 디비에 필드값을 하나 추가하여 전송된 POST 값을 넣고 cart.php에서 출력할려고하는데 어디서 손을 대야할지 모르겠네요 ㅜㅜ
$sql = " INSERT INTO {$g5['g5_shop_cart_table']}
( od_id, mb_id, it_id, it_name, it_sc_type, it_sc_method, it_sc_price, it_sc_minimum, it_sc_qty, ct_status, ct_price, ct_point, ct_point_use, ct_stock_use, ct_option, ct_qty, ct_notax, io_id, io_type, io_price, ct_time, ct_ip, ct_send_cost, ct_direct, ct_select, ct_select_time, ct_input )
VALUES ";
마지막에 ct_input 이라고 새로운 필드를 추가해서 INSERT 한 결과 아예 장바구니에 상품이 등록되지 않더군요
도와주세요...
추가) 어디서 값들이 대입되 장바구니 테이블에 저장되는지도 모르겠습니다 ㅜㅜ VALUES 하고 끝난거보면 필드만 추가한건데 필드값들은 어디서 업데이트되거나 INSERT 되나요??
!-->!-->
답변을 작성하시기 전에 로그인 해주세요.