Hi,
my next question (formu is really helping with my project thanks), is I have a list of emails in my database and I want to create a page say emails.php and for it to display the emails [email]email@email.com,email2@email2.com[/email],
so basically divide them all with a , so I can add them directly into my outlook. Is there a way I can do this by code what I have so far...
<?php
$conn = mysql_connect("localhost", "username", "password");
mysql_select_db("mydatabase", $conn);
$result = mysql_query("SELECT myemail FROM emails")
or die(mysql_error());
?>