Sorun php kullanarak mysql dizi değerleri saklamak zorunda

0 Cevap php

Ben bir diziye bir dize patlayabilir çalışıyorum. Bir fullname firstname, middleName ve Soyad patladı edilecek.

  <?php

    include('conn.php');

    $un=$_POST['uname'];
    $pw=$_POST['pw'];
    $fulnem=$_POST['fullnem'];
    $temp=explode('/',$fulnem);

    $email=$_POST['email'];

    $method="creates";





    $sql="call compactproc('$un', '$pw', '$temp[0]', '$temp[1]', '$temp[2]', '$email', '$method')";
    $result=mysql_query($sql);
    if(!$result){
    echo "error!";

    }



    ?>

Burada prosedür ceset:

BEGIN

IF actions="creates" THEN
INSERT INTO admin_table(Uneym, Pwerd, Firstname, Middlename, Lastname, Email) VALUES(usrname, psword, frstname, midname, lstname, imail);
END IF;
END

Only the firstname is stored in the database. Why is it? The midname and lastname doesnt get stored and I get the undefined offset error on the line of the sql query. can you tell me what's the problem here.

0 Cevap