Most browsers do not display the contents of a table until all elements of that table have downloaded. Therefore, if you paste the PHP insertion code lines within a single main table on your page, although it will work, nothing will display until the entire long main page has downloaded. If your page structure means that the main body of the page (into which your php insertion codes are pasted) is a single table, then the Guide will appear slow to download. If it possible to change your page design so that the insertion codes are not all within a single table, or an overall table, this is wise. Otherwise, ensure that this line of script appears in the head of the page:
<SCRIPT SRC="http://www.gospelcom.net/guide/scripts/starterpage.js" LANGUAGE="JAVASCRIPT"></SCRIPT>
The easy way round this, which makes the introduction and contents section load almost instantly, is to paste each line of insertion code in a separate table. The Web Evangelism page is divided up into five sections so you can do this easily. The following table structure will not slow loading, provided it is not also then enclosed in an overall frame.
<TABLE>
[Your heading and any introductory paragraph here]
<?php include("http://www.gospelcom.net/guide/yourpage/phpinsertnav.html"); ?>
<TABLE>
<TABLE>
<TABLE>
<TABLE>
<TR>
<TD>
</TD>
</TR>
</TABLE>
<TR>
<TD>
<?php include("http://www.gospelcom.net/guide/yourpage/phpinsertintro-1.html"); ?>
</TD>
</TR>
</TABLE>
<TR>
<TD>
<?php include("http://www.gospelcom.net/guide/yourpage/phpinsert2-6.html"); ?>
</TD>
</TR>
</TABLE>
<TR>
<TD>
<?php include("http://www.gospelcom.net/guide/yourpage/phpinsert7-12.html"); ?>
</TD>
</TR>
</TABLE>
<TR>
<TD>
<?php include("http://www.gospelcom.net/guide/yourpage/phpinsertlinks.html"); ?>
</TD>
</TR>
</TABLE>
| Section main page | Back to top