I got my basic recipe working thanks to some help here, thank you :)
Another issue I am wondering about is multi-line output...
while($row = $db->fetch_array($result))
{
print("$row[3]");
}
How would this be done in a recipe to format the output?
Daniel