Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress How to Build a WordPress Plugin Building a WordPress Plugin Settings Page CRUD with the WordPress Options Table

Fatal error: Can't use function return value in write context in

I followed the tutorial but I am getting the error : Can't use function return value in write context in ---->

<?php

$options('qoitem-username')= $username;


function qo_inset_item_name(){

global $options;

  if( isset( $_POST['qoitem-name-form-submitted'])) {
    $hidden_field = esc_html( $_POST['qoitem-name-form-submitted'] );
    if($hidden_field == 'Y' ) {
      $username= esc_html( $_POST['qoitem-username'] );
      $options('qoitem-username')= $username;

      add_option( 'qovalue' , $options );
     }
  }
  $options = get_option('qovalue');
  if ( $options != ' ') {
    $username = $options['qoitem-username'];
  }

    require( 'inc/treehouse.php');
}

i am trying to add the database entry.

thanks

1 Answer

Alena Holligan
STAFF
Alena Holligan
Treehouse Teacher

I believe the problem lies in your use of parenthesis instead of square brackets. All the uses of

$options('qoitem-username')

should be

$options['qoitem-username']