Jump to content

[SOLVED] Why???? variable not being seen


mfindlay

Recommended Posts

Hey Guys,

 

Can anyone please tell me why the variable below isn't being seen?

 

$question_stem = explode("_______" , $question_stem); //This is a fill in blanks question stored in csv fille, 
$stem_length = count($question_stem);//Need to find out how many elements in array

if ($stem_length > $length) //a test....
echo "<CONTENT TYPE=\"text/plain\"><![CDATA[" . $question_stem[$stem_length] . "]]></CONTENT>\n"; // doesn't work????
echo $stem_length; // work correctly, prints out the value

 

Basically I want to print out the last element of the $question_stem array...

 

Thanks..

Link to comment
https://forums.phpfreaks.com/topic/109384-solved-why-variable-not-being-seen/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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