Jump to content

Recommended Posts

I get the following error for my code

 

Notice: Undefined index: manufacturer_id C:\Sites\recycle_update_order.php on line 296 selected="selected"

 

Isn't manufacturer_id defined in the first line of the code?

 

Here's the code line 296 is marked

 

<select name="manufacturer_id" id="manufacturer_id" class="text_background">

  <option value="" <?php

  if ($_POST['manufacturer_id'] == $manufacturerID) {echo 'selected="selected"';}

  elseif (!(strcmp("", $firstManufacturer))) {echo "selected=\"selected\"";} ?>></option>

        <?php

  do { 

  ?>

    <option value="<?php echo $row_getManufacturer['manufacturer_id']?>"

    <?php

      if (!(strcmp($row_getManufacturer['manufacturer_id'], $firstManufacturer))) {echo "selected=\"selected\"";}  ***** this is line 296 ****

    ?>

    >

    <?php echo $row_getManufacturer['manufacture_name']?>

    </option>

    <?php

      } while ($row_getManufacturer = mysql_fetch_assoc($getManufacturer));

        $rows = mysql_num_rows($getManufacturer);

        if($rows > 0) {

            mysql_data_seek($getManufacturer, 0);

    $row_getManufacturer = mysql_fetch_assoc($getManufacturer);

      }

      ?>

</select>

 

 

Link to comment
https://forums.phpfreaks.com/topic/52873-clarification-needed/
Share on other sites

What it means is that the manufacturer_id has not been set by post to avoid this message do this:

 

<select name="manufacturer_id" id="manufacturer_id" class="text_background">
  <option value="" <?php
  if (isset($_POST['manufacturer_id']) && $_POST['manufacturer_id'] == $manufacturerID) {echo 'selected="selected"';}
  elseif (!(strcmp("", $firstManufacturer))) {echo "selected=\"selected\"";} ?>></option>
        <?php
  do { 
  ?>
     <option value="<?php echo $row_getManufacturer['manufacturer_id']?>"
     <?php
       if (!(strcmp($row_getManufacturer['manufacturer_id'], $firstManufacturer))) {echo "selected=\"selected\"";}   ***** this is line 296 ****
     ?>
     >
     <?php echo $row_getManufacturer['manufacture_name']?>
     </option>
     <?php
      } while ($row_getManufacturer = mysql_fetch_assoc($getManufacturer));
         $rows = mysql_num_rows($getManufacturer);
         if($rows > 0) {
            mysql_data_seek($getManufacturer, 0);
       $row_getManufacturer = mysql_fetch_assoc($getManufacturer);
      }
      ?>
</select>

 

www.php.net/isset

Link to comment
https://forums.phpfreaks.com/topic/52873-clarification-needed/#findComment-261071
Share on other sites

you have a do..while() loop to process the results

 

do { 
  ?>
     <option value="<?php echo $row_getManufacturer['manufacturer_id']?>"
     <?php
       if (!(strcmp($row_getManufacturer['manufacturer_id'], $firstManufacturer))) {echo "selected=\"selected\"";}   ***** this is line 296 ****
     ?>
     >
     <?php echo $row_getManufacturer['manufacture_name']?>
     </option>
     <?php
      } while ($row_getManufacturer = mysql_fetch_assoc($getManufacturer));

 

Unless you did a "mysql_fetch_assoc($getManufacturer)" before this loop then first time through there is no row to process - hence undefined.

Link to comment
https://forums.phpfreaks.com/topic/52873-clarification-needed/#findComment-261176
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.