Jump to content

Kcarson

Members
  • Posts

    207
  • Joined

  • Last visited

Everything posted by Kcarson

  1. Well, sounds like you need to use a left/right join. Here is a sample query based on the information you gave. It should return a count to you of how many records in table 1 could not match to something in table 2.SELECT count(a.id) FROM table1 a RIGHT JOIN table2 bON a.id = b.eidWHERE a.id = NULL;
  2. Kcarson

    Forums

    He is right about phpBB. Another option is CommunityServer (ASP.net).Here is a site explaining both of these a little bit better with links to the respective pages.http://www.boutell.com/newfaq/creating/forum.html
  3. Thanks for the suggestions. I definitely do not want to it using frames.....I am trying to make the entire site as efficient and clean as possible....frames kind of defeat that purpose.After more research, and based on suggestions listed above, I have found the following information, I am including it for others who might have the same question:Basically, what is needed is to use Server Side Includes (SSI)HTML - www.boutell.com/newfaq/creating/include.htmlASP - www.w3schools.com/asp/asp_incfiles.aspPHP - www.w3schools.com/php/php_includes.aspIn all cases, the menu would be put in a separate page and included using the various methods.From what I can tell, the best thing to do is either use ASP or PHP, and there are no major differences as far as this subject is concerned other than familiarity with the language.Thanks for pointing me in the right direction, and hopefully this information can benefit others who might face a similiar situation.
  4. As I have started working on my website, I have found the number of pages growing quickly, which is good (more content). I however have also noticed that when I need to make changes to the overall layout/menu of the site, I have to make the changes on each individual page. I learned about CSS and have used that for the styling and so forth, which definitely helps. I now am wondering what the best method would be for the menu (about 6 links right now). My main fear is that after adding all the other pages, I will one day decide I need to add an additional item to the menu and then I will be forced to add it in 15-20 pages or so (not desired by any means).I have looked into the virtual includes, but wasn't sure if there was a better method out there or if PHP, ASP, or JavaScript might be able to help me out as well, or if there might also be a way to do this using CSS. Well, let me know.Thanks in advance.
×
×
  • Create New...