最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Mysql Error in querying form entries in Gravity Form plugin

matteradmin8PV0评论

This is my code.

     <?php
          global $wpdb;
          $entry_table = GFFormsModel::get_entry_table_name();
           $sql = $wpdb->prepare( "SELECT * FROM {$entry_table} WHERE id=%d", $entry['id'] );
            $current_properties = $wpdb->get_row( $sql, ARRAY_A );
            foreach ( $current_properties as $key => $property ) {
                if ( ! isset( $entry[ (string) $key ] ) ) {
                    $entry[ (string) $key ] = $current_properties[ $key ];
                }
            }



                 ?>

I want to run this query and list form entries of Gravity form. But this is what I get.

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Post a comment

comment list (0)

  1. No comments so far