Hi everyone, I have a very simple PHP foreach loop that I need help with converting to asp. Can anyone help? It looks bigger than it is because of comments =) I tried php to asp converters but they didn't completely work and I couldn't figure the rest out. <?php /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This page loops through each posted value ($_POST) * * and creates a string formatted like: * * fieldname1: fieldvalue1 * * fieldname2: fieldvalue2 * * etc. * * It has the advantage of not needing to know the * * names of the field names that get posted * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ if(isset($_POST['first-name'])) { //user submitted the form $message = ''; //create a string variable message foreach($_POST AS $key => $value) { /* this foreach loop does this: * for each posted name be able to reference it as $key * for each posted value be able to reference as $value * this way I don't need to know the names of the posts to get their values * the TM__ is a string I started some form names with so I could add extra spaces for formatting * I then remove the TM__ from each name be using the ereg_replace function * then I send an email using mail(); */ if(eregi('TM__', $key)) { $message .= "\n\n".ereg_replace('TM__', '', $key)."\n"; } else { $message .= $key.' : '.$value."\n"; } } mail("myemail@here.com", 'Email Subject', $message); $success = 1; } ?> Code (markup):