Inserting data into a table in WordPress database using WordPress $wpdb

后端 未结 4 1940
名媛妹妹
名媛妹妹 2021-02-04 07:46

I am starting out plugin development and have followed the tutorials on the WordPress Codex sites. I am now stuck - I have a database called \"wp_imlisteningto\", where the

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-04 08:34

    Try this..

    insert( $table_name, array( 'album' => "$_POST['album']", 'artist' => "$_POST['artist']" ) );
    ?>
    

    Ex :

    insert($table_name , array('chart_name' => "Line Chart" ,'chart_type' => "trends",'status' => 0));
    
    ?>
    

提交回复
热议问题