Jump to content

Bilge

New Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by Bilge

  1. In the following code: echo $text[2] returns the word at that index but echo $key returns a blank.

    Can someone explain why is array-search not working in this  indexed array?

    It does work when I test it with a key => value type array.

    <?php $myfile = fopen("test.txt", "r") or die("Unable to open file!");

    while(!feof($myfile)) {

      $text[] = fgets($myfile); }

    fclose($myfile);

    $word = $_POST['word'];

    $key = array_search($word, $text);

    echo $key ?>

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.