Yes, that was just a section of my code
Here is more code from that section
if (($cemail) || ($clocation) || ($cfav_rapper) || ($cinfo)) {
echo "The following items have been updated in your profile:<br /><ul>";
if ($cemail) {
echo $cemail;
}
if ($clocation) {
echo $clocation;
}
if ($cfav_rapper) {
echo $cfav_rapper;
}
if ($cinfo) {
echo $cinfo;
}
echo "</ul><br />To view your updated profile, <a href=\"profile.php\">click here</a>.<br><br>
<a href=\"edit_profile.php\">Click here</a> to edit your profile again.";
";
}
else {
if ($correct_email != true) {
echo " E-mail was NOT changed. Wrong format specified.<br><br>";
}
echo " Nothing in your profile has been changed. <a href=\"profile.php\">Click here</a> to view to your profile.<br><br>
<a href=\"edit_profile.php\">Click here</a> to edit your profile again.";
}