Jump to content

jlhaslip

Advanced Member
  • Posts

    524
  • Joined

  • Last visited

Posts posted by jlhaslip

  1. Or even if the number of posts was lower than 1000.

    Most Spammers don't hang around to reach 10 posts just to plant a Spam Siggy.

    I Moderate a Forum with in excess of 60,000 members and we allow signatures for all members but don't allow Spammy Sigs. No problems. The Mods simply replace them with a message that their sig has been removed. Done.

  2. Your use of Heading tags will be further complicated by including them inside the Table based layout.

    I would suggest that you find a true html/css layout for the page and the Heading structure becomes more likely to succeed in your target of improving SEO and Search results.

  3. the portion of the script that you don't list above which follows the script snippet you list is what does the displaying of the images for the thumb gallery

    >while ( $count                 if ( !is_dir($file) && ($type = getPictureType($file)) != '' ) {
                       if ( ! is_dir('thumbs') ) {
                           mkdir('thumbs');
                       }
                       if ( ! file_exists('thumbs/'.$file) ) {
                           makeThumb( $file, $type );
                       }
                       echo '</pre>
    <li>';
                       echo '';
                       echo '</li>';<br>                   $count++;<br>               

  4. <?php is the suggested method. Not all servers allow short_tags. . since it conflicts with the XML tag.

     

    Another thing, to add to what falkencreative posted above, an "included" file is always assumed to contain html and is parsed as such unless you add the php tokens. (<?php ... code here ... ?>)

×
×
  • Create New...