hi to u all im very new to php and ive found some code that I like now im modifying it.
heres the link to the working version http://www.helenhowespdn.com/job/index.php
heres the code
<?
$dbhost = "**";
$dbuname = "";
$dbpass = "";
$dbname = "***";
$celpad = "2";
$sitename = "";
$siteurl = "";
$site_logo = "logo.gif";
$startdate = "june 2001";
$adminmail = "admin@bhavin";
$header = "<div align=\"center\">
<center>
<table border=\"0\" cellpadding=\"0\" cellspacing=\"1\" width=\"100%\" bgcolor=\"#C6D9EC\">
<tr>
<td width=\"100%\">
<h1 align=\"center\"><font face=\"Verdana\" size=\"5\" color=\"#006699\">This
Site is Designed and Developed By </font></h1>
<h1 align=\"center\"><font face=\"Verdana\"><font color=\"#000080\">R</font> <font color=\"#FF0000\">
n </font> <font color=\"#000080\">D Infomark</font></font></h1>
</td>
</tr>
</table>
</center>
</div>
";
$foot1 = "<p align=center><a href=\"http://rndinfo.com\" target=\"blank\"><img src=\"rndlogo.gif\" border=\"0\" Alt=\"Web site powered by RnD Infomark\" hspace=\"10\"></a><br></p>
";
?>
now its the header part above that I am trying to change to fit my sites look.
now when I cut out the header and put in my HTML I get an error - Parse error: parse error in /home/1486/howespdn/www.helenhowespdn.com/public_html/job/config.php on line 15
this is the changed code
$dbhost = "***";
$dbuname = "";
$dbpass = "****";
$dbname = "";
$celpad = "2";
$sitename = "";
$siteurl = "";
$site_logo = "logo.gif";
$startdate = "june 2001";
$adminmail = "admin@bhavin";
$header = "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" height=\"31\">
<tr>
<td bgcolor=\"#0099FF\" width=\"44%\" height=\"45\">
<p><img src\="logo.gif\" width=\"350\" height=\"80\"></p>
</td>
<td bgcolor=\"#0099FF\" width=\"6%\" height=\"45\"> </td>
<td bgcolor=\"#0099FF\" width=\"50%\" height=\"45\">
<form name=\"form1\" method=\"post\" action=\"\">
<table width=\"98%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" height=\"24\">
<tr>
<td height=\"2\" colspan=\"4\"><img src=\"employerslogon.gif\" width=\"100\" height=\"10\"></td>
</tr>
<tr>
<td height=\"2\" width=\"34%\"><img src=\"username.gif\" width=\"58\" height=\"7\"></td>
<td height=\"2\" width=\"9%\"> </td>
<td height=\"2\" colspan=\"2\"><img src=\"password.gif\" width=\"58\" height=\"7\"></td>
</tr>
<tr>
<td height=\"14\" valign=\"top\" width=\"34%\"> <font size=\"1\" face=\"Verdana, Arial, Helvetica, sans-serif\">
<input type=\"text\" name=\"username\">
</font></td>
<td height=\"14\" valign=\"top\" width=\"9%\"> </td>
<td height=\"14\" valign=\"top\" width=\"38%\">
<input type=\"password\" name=\"password\">
</td>
<td height=\"14\" valign=\"top\" width=\"19%\" align=\"right\">
<input type=\"image\" height=\"22\" alt=\"Go Button\" width=\"34\" src=\"go_btn.gif\" align=\"absbottom\" name=\"image2\">
<input type=\"hidden\" name=\"response\" value=\"login\" >
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
";
$foot1 = "<p align=left><a href=\"http://www.blabla.com\" target=\"blank\"><img src=\"logo.gif\" border=\"0\" Alt=\"bla bla Specialists\" hspace=\"10\"></a><br></p>
";
whats the problem with this...i cant find a problem with line 15 PLEASE HELP IM GOING MAD