Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7753743
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T12:07:45+00:00 2026-06-01T12:07:45+00:00

In cake php how to avoid one or more elements in option array of

  • 0

In cake php how to avoid one or more elements in option array of select box.

$options = array('One','Two','First','Second');

echo $this->Form->select('trial', $options);

Here I want to avoid ‘First’ and ‘Second’ from array, here option array is coming from DB.

$options = array('One','Two');

Is it possible to do it by any alteration in select method of cake php(i.e array $attributes or anything else ) or manually search the array and drop the values ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T12:07:46+00:00Added an answer on June 1, 2026 at 12:07 pm

    Use array_slice():

    echo $this->Form->select('trial', array_slice($options, 0, 2));
    

    Edit:

    An alternative solution, if you don’t know the order of the array, and if the values are unique, is by using array_search():

    unset($options[array_search('First', $options)]);
    

    Or if the values aren’t unique and you’d like to remove them all, then array_keys() could be useful:

    $keys = array_keys($options, 'First');
    
    foreach ($keys as $key)
    {
      unset($options[$key]);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How to write two span tags or two elements inside an cake php link
I am uploading a file in cake php. <?php echo $form->create(Video,array('action'=>'add','name'=>'thisform','enctype'=>'multipart/formdata','onsubmit'=>'javascript: return validate();')); echo
I building my first cake PHP application, all things configured correctly, but when i
I am using cake php now. I have two file example1.ctp and example2.ctp. I
In cake php is how we can get order of query result according to
I am a Cake PHP novice. I want to edit the table Issue. This
I have go TCPDF setup in my cake php install and am now trying
Background I am developing my blog application in Cake PHP. I aim to provide
how to put folder of vbulletin and modify .htaccess file in cake PHP in
i want to convert zend php to cake php but not finding correct book

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.