Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. Undefined Index Error in PHP & MYSQL

Undefined Index Error in PHP & MYSQL

Scheduled Pinned Locked Moved Web Development
phpdatabasemysqlhelpcareer
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    BSRK
    wrote on last edited by
    #1

    I am getting the error - "Undefined Index Job_Code, Account_Code, welfare_tag & Amount" in the following code (PHP & MYSQL). while($rs=mysql_fetch_array($result,MYSQL_BOTH)) { $Job_Code=$rs["Job_Code"]; $Account_Code=$rs["Account_Code"]; $welfare_tag=$rs["welfare_tag"]; $Amount=$rs["Amount"]; }

    L 1 Reply Last reply
    0
    • B BSRK

      I am getting the error - "Undefined Index Job_Code, Account_Code, welfare_tag & Amount" in the following code (PHP & MYSQL). while($rs=mysql_fetch_array($result,MYSQL_BOTH)) { $Job_Code=$rs["Job_Code"]; $Account_Code=$rs["Account_Code"]; $welfare_tag=$rs["welfare_tag"]; $Amount=$rs["Amount"]; }

      L Offline
      L Offline
      l a u r e n
      wrote on last edited by
      #2

      first off: $row = mysql_fetch_assoc($res); $job_code = $row['job_code']; $account_code = $row['account_code']; $welfare_tag = $row['welfare_tag']; $amount = $row['amount']; is a neater way to write the code ;) i think ur error is coming in from the case of the variable names ... always use lower case for everything ... it makes life simpler in the long run trust me :)


      "there is no spoon"
      biz stuff about me

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups