• This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn more.

Search results

  1. ericjs61

    RESOLVED Array and string offset access syntax with curly braces is deprecated in insert-php

    Hello, I am running a plugin called Query Monitor and getting this output related to insert-php (Woody Snippets): Array and string offset access syntax with curly braces is deprecated wp-content/plugins/insert-php/includes/jsonmapper/class-json-mapper.php:282 Plugin: insert-php Is there a...
  2. ericjs61

    BUG Woody Snippets no longer working?

    Hello, All of my universal snippets created prior to about 4 days ago work. All new snippets are not working. I reinstalled Woody Snippets and it is still not working.
  3. ericjs61

    QUESTION Where do I put the php file when using jquery with an AJAX call in Woody Snippets?

    Hello, I am trying to use AJAX in a Universal Snippet. The AJAX call asks for a "url:", where do I put the php file? <script> $(document).ready(function(){ // code to read selected table row cell data (values). $(".btnSelect").on('click',function(){ var...
  4. ericjs61

    QUESTION mysqli Prepared statement not working in Universal Snippet

    Hello, I am using a function in PHP to prepare a mysql SELECT statement and it seems to be failing on one line of code. What am I doing wrong? function loadCounty(){ $sqlCounty = "SELECT id, county_name FROM wp_counties WHERE state_id=? ORDER BY county_name ASC"; $stmt =...
  5. ericjs61

    QUESTION How to Pass variables between Snippets

    Hello, I have a Snippet that is a form that uses $_SESSION variables. I want to pass a variable from one Snippet to another Snippet, so I can run Mysql database queries. Example: [wbcr_snippet id="6677"] has a variable that is the "mysqli_insert_id($link);" I want to pass this variable to...