Forum Moderators: open
You have a page where a certain section of that page has text that changes every day at midnight.
A visitor to that website page sees that particular changing comment and would like to email that text to a friend of theirs.
Example of the table layout below.
Any ideas where to start please?
Any help very much appreciated.
Dexie.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page</title>
</head>
<body>
<table border="1" width="100%" id="table1">
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Changing text here</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
Xapti - To see what I'm trying to achieve, it's so that when the visitor clicks on a particular link, it will send a certain part of the text on that page (from the table cell in the code above), to a friend of theirs.
Any ideas on how it could be done please?
Dexie.