Jump to content

Little Goat

Members
  • Posts

    733
  • Joined

  • Last visited

Everything posted by Little Goat

  1. I can read the words in your signature, reportingsjr. I highlighted it after to make sure, but I could read it.
  2. so what happens?do you have a link?
  3. you want a tutorial? here's one:http://www.expertsrt.com/tutorials/Matt/install-apache.html
  4. here's a good tutorial: http://www.expertsrt.com/tutorials/Matt/install-apache.html this is PHP5, but just do the httpd.conf part, and it should work.
  5. why do you have that avatar if you mainly use FF?
  6. I think it may be Opera. I've had lots of problems with Opera caching a page, and I have to refresh it. that could be it.
  7. well, I think we better give a bit more info.First of all, to use reportingsjr's example and the one I'm about to show you, you need to have PHP enabled on your webhost.first you make yourself a header file, and a footer file.let's say the header file looks like this: <html><head><title><?php echo $pagename; ?></title><script src="myscriptiwantineverypage.js"></script></head><body> you know, just the basic head of a page. that <?php echo $pagename; ?> is what's going to give you a different title on each page.then you have the basic footer. (I'm not going to give an example on this one.)then you have each file, that are different, and they look something like this: <?php $pagename = "Mytotallyrediculouslylongtitle!!!";include("header.php"); ?>this is some content that will change on each page....this is some content that will change on each page....this is some content that will change on each page....<?php include("footer.html"); ?> of course, you have to change Mytotallyrediculouslylongtitle!!! to whatever you want your title to be, and header.php to whatever the filename of your header is, and footer.html to whatever the filename of your footer is.have I confused you enough? you really should get a basic understanding of php before you try this though.LG
  8. there is no way to change that. In Opera, it says "Choose" instead of "Browse". it all depends on the browser,and the only way to change it is get a different browser, or edit an Open-source one.
  9. ok, that should be fine for what I'm using it for.thanks.
  10. hey, does anyone know how big of a database I should have for PHPBB? I have a 10 MB DB right now, how many posts will that hold? anyone know?thanks.
  11. there is a space in between the include and the brackets () like this: include ('text.php)//space hereinclude('text.php)//none here not sure if that changes anything, but try it anyway.
  12. you don't need to convert it to php, you can include any regular file.if you still want to, here's how: <?phpecho '<div id="sidebar-a"><p class="sideHEAD"><u>Head</u></p><p class="sideHEAD"><a class="side" href="/directory/target.html">Category</a></p><p class="sideTEXTINDENT"><a class="side" href="/directory/target2.html">Subcategory</a></p></div>';?> notice the echo.
  13. I think you are the best for graphics!anyway if you want a fast phpbb forum, go to forumer.com. they do free phpbb forum hosting. they do have a small ad though, like here.
  14. Little Goat

    COPPA

    I think there's an automatic one. this suggests so:http://forums.invisionize.com/index.php?showtopic=107159
  15. Little Goat

    cms building

    well, first I would get a template for all the pages.
  16. what about flash? I have a friend that does that a little bit.
  17. Here's how we get people to vote:in our sigs put this(temporarily):Join the W3schools Project!Discuss vote
  18. Yea, ConTEXT has a folder veiw on the side. check out http://context.cx/ to download and stuff. If you really want to know more, ask Justsomeguy(on this forum).
  19. so a CMS is sort of like what you use, Aspnetguy. right?
  20. so in other words, I'm not learning ASP.net, I'm learning a different language to code it with. right?I think I'll go with C#. thanks.
  21. lol, he was just joking with you.
  22. I'm trying to put together A regular expression that will match all of the following: <a href="someurl.html">go to someurl!</a><a href='http://somesite.com/someurl.php' title="hi!">go to somesite!</a> mainly just one that will pick up <a> tags with an href value, regardless of which quotes used, and which other attributes are specified. here is my regex that I'm hoping does that: /<a[^>]*?href=\s*("|')(.*?)("|')[^>]*?>(.*?)<\/a>/is also, is there a way to return what is in the href attribute and what is in between the tags? (I am tring to use JAVA, but PHP will work fine.)thanks.
  23. That sounds like me before I had anything else. My sig used to say "Why complain? IE is fine." that was before justsomeguy converted me to the dark side.
  24. if you have set dimensions (width/height) on the thing you're trying to do it on, it should work.
×
×
  • Create New...