The following code is taken from a perfect working drop down list, and then when I put it into a function it breaks it! Am I doing something wrong here?

<?php

require "connect.php";
//create country lists

function records() {
  $countryOptions = '';
  $query = "SELECT DISTINCT country FROM regions";
  $result = mysql_query($query);
  if (!$result) {
    $countryOptions = "<option>Error Retrieving Records</option>\n";;
    }
  else {
    while ($row=mysql_fetch_assoc($result)) {
      $countryOptions .= "<option value=\"{$row['country']}\">";
      $countryOptions .= "{$row['country']}";
      $countryOptions .= "</option>\n";
      }
    }
  }

echo records();

?>
link|improve this question

76% accept rate
3  
You're not returning anything from the function - the $countryOptions will be lost – Pekka Apr 30 '11 at 22:22
;; really is not necessary in line 11 ;) – Wh1T3h4Ck5 Apr 30 '11 at 22:31
feedback

1 Answer

up vote 3 down vote accepted

You're not outputting $countryOptions anywhere.

Either add

echo $countryOptions;

at the end of the function or better yet use

return $countryOptions;

and call the function like this:

echo records();

(or implement it to fit your exact needs - it's hard to tell how you use it in your own code)

link|improve this answer
Oh my god. I can't believe what a dumb mistake that was :( Thanks for helping. Sometimes you just can't see if you are staring at it for too long. – Cayetano Gonçalves Apr 30 '11 at 22:25
Happens ;) On the other hand - if problems arise after moving code into a function, one should usually look for an issue with variable scope - both on the function input or output. – Czechnology Apr 30 '11 at 22:27
NO no, it works perfectly now. I even added some variables already. I just forgot to return it, that was the entire problem :) – Cayetano Gonçalves Apr 30 '11 at 22:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.