PHP API 함수를 이용한 레코드 삽입 2
memberTable.sql DB 테이블을 생성한다. create table memberTable( id char(15) not null, pass char(15) not null, name char(10) not null, hp char(20) not null, email char(80), primary key(id) ); form.html 전달방식 action="insert.php" method="post" name="memer_form" 전달 될 정보 $id $pass $name $hp $email id pass name hp email insert.php
2022.02.10