| Thanks for the swift reply john,
Im happy with the site layout, and i already use many of the contributions and have made a couple myself. However i want things on my site which there are no contributions for, ie: a gallery where by customers can submit their photos. Ive just got the gallery part working, just got to sort the backend stuff with the db for the rest.
Re:tables, yeah i know about html/css tables but you can in fact create them with .php. Heres an example: <?phpecho "<table border=1 cellpadding=2>";for($i=0;$i<10;$i++) { echo "<tr>"; for($j=0;$j<10;$j++) { echo "<td>". (($i*10)+$j) . "</td>"; } echo "</tr>";}echo "</table>";?/\ a la google simple tables with php Now heres the code im dealing with:$im[$xyz].="</font></b></td>\n";
if($i==$nmbr){if($xyz==$rrr){
$linew.="<b>[$xyz]</b>\n";
}
else
{
$linew.="<a href=\"$file?rpd=$rpd&rrr=$xyz&namezzz=$namezzz\">[$xyz]</a> \n";
}
$i=0;$xyz++;}
if($rw==2){$rw=0;$im[$xyz].="</tr><tr>";} $i++;
$rw++;
$kolvo++; }
if($i<$nmbr&&$i>0){if($xyz==$rrr){I use .php to call up the stylesheet for the text like this: <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"><link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>So, yeah, i basically need somebody to code new contributions and pages for the site in a nutshell. |