this is insertlink.php
<?
// set up some variables
// server name
$server = "localhost";
// username
$user = "gareth";
// password
$pass = "";
// database to query
$db = "caravanol";
// open a connection to the database
$connection = mysql_connect($server, $user, $pass) or die("Invalid server or user");
// formulate the SQL query - same as above
$query = "replace into links(url,title,blurb,id) values ('$url','$title','$blurb','$id');";
print $query ."<br>\n";
// run the query on the database
$result = mysql_db_query($db,$query) or die("Error in query");
mysql_close($connection);
unset($query);
$output = "Great!";
include("template.php");
?>
and this is template.php
<head>
<title><?=$page_title; ?></title>
<style type="text/css">
<!--
H2
{
font-size: 10pt;
font-family: verdana,arial,helvetica,sans-serif;
font-weight: bold;
}
BODY
{
font-size: 10pt;
font-family: verdana,arial,helvetica,sans-serif;
background: #CCCC99
}
IMG
{
border-color: #336699;
}
TD
{
font-size: 10pt;
font-family: verdana,arial,helvetica,sans-serif;
}
INPUT, SELECT, TEXTAREA
{
font-size: 8.5pt;
font-family: arial,helvetica,sans-serif;
}
A {text-decoration: none; color:#336699; font-size:10pt; font-family:verdana}
A:hover {text-decoration: underline;}
HR {color:"#336699"; size:1}
-->
</style>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" text="#336699">
<table width="100%" border="0" cellspacing="0" cellpadding="5" background="#FFFFFF">
<tr>
<td valign="top"><a href="index.php"><IMG SRC="logo.gif" border="0"></a></td>
<td valign="middle" halign="right">Banner Area</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr bgcolor="#336699" height="8"><td colspan="3"></td></tr>
<tr bgcolor="#D3D3D3" height="10" halign="center"><td colspan="3">
</td></tr>
<tr>
<td bgcolor="#336699" width="150" valign="top"><font color="#FFFFFF">
<? require('sidemenu.php'); ?></font>
</td>
<td valign="top" valign="top">
<?=$output?>
</td>
<td bgcolor="#999966" width="130" valign="top" align="right"><font color="#FFFFFF">
<h2>Welcome to the new site:</h2>
We now have many new features and a great new look!
</font></td>
</tr>
</table>
<center><br>© LinksManager, 2001<p></center>
</body>
template.php also links to sidemenu.php but this code contains no php.
Thanks for your help,
Gareth