Go Back   CodingForums.com > :: Server side development > MySQL

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 03-09-2012, 06:55 AM   PM User | #1
hackarchives
New Coder

 
Join Date: Mar 2012
Posts: 41
Thanks: 6
Thanked 2 Times in 2 Posts
hackarchives is an unknown quantity at this point
Exclamation Undefined Index Problem

i created an email registration script and when i tried to display all email addresses from it i get an undefined index error.

Code of test.php
PHP Code:
<?php
require("config.php");
 
$test mysql_query("SELECT * FROM Email");
  while(
$row mysql_fetch_array($test))
  {
  echo 
$row['email'];
  echo 
"<br />";
  }
  
mysql_close($con);
?>
Error i get :

Last edited by hackarchives; 03-09-2012 at 08:58 AM..
hackarchives is offline   Reply With Quote
Old 03-09-2012, 07:37 AM   PM User | #2
webdev1958
Banned

 
Join Date: Apr 2011
Posts: 656
Thanks: 14
Thanked 69 Times in 69 Posts
webdev1958 can only hope to improve
So the error message can't be more clear. It's telling what the error is and in what line it's in.

What's your question?

Have you confirmed the query actually ran? If yes, then have a look at the column names in the table and I think you'll find a mismatch to what your code is trying to access.

Last edited by webdev1958; 03-09-2012 at 07:46 AM..
webdev1958 is offline   Reply With Quote
Users who have thanked webdev1958 for this post:
hackarchives (03-09-2012)
Old 03-09-2012, 08:58 AM   PM User | #3
hackarchives
New Coder

 
Join Date: Mar 2012
Posts: 41
Thanks: 6
Thanked 2 Times in 2 Posts
hackarchives is an unknown quantity at this point
Sorry, it was a foolish mistake in database.I corrected it.Thanks for help anywayz
hackarchives is offline   Reply With Quote
Old 03-09-2012, 09:00 AM   PM User | #4
webdev1958
Banned

 
Join Date: Apr 2011
Posts: 656
Thanks: 14
Thanked 69 Times in 69 Posts
webdev1958 can only hope to improve
glad it's sorted out
webdev1958 is offline   Reply With Quote
Reply

Bookmarks

Tags
error, mysql, undefined index

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 11:12 AM.


Advertisement
Log in to turn off these ads.