PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<?
foreach($q_array as $questions)
{
// This code will cause the $q_var variable to be overwritten each time the loop passes, which is what I don't want. How do I append each piece of information to the end of the variable?
$q_var = $questions
}
?>