skip to Main Content

Make email address in table clickable, opening send email – Phpmyadmin

My table gets populated from my phpmyadmin database in php: while($row2 = mysqli_fetch_array($result2)) { $dataRow2 = $dataRow2." <tr> <th>Event Name</th> <th>$row2[1]</th> <th>Location</th> <th>$row2[2]</th> <th>Description</th> <th>$row2[3]</th> <th>Date</th> <th>$row2[4]</th> <th>Cost</th> <th>$row2[5]</th> <th>Email</th> <th>$row2[6]</th> </tr>"; } And is in the HTML as so:…

VIEW QUESTION
Back To Top
Search