Search results

  1. t2t2t

    CSS Warning

    <span style="switch" id="shortcut" onclick="Switch();">&nbsp;</span> The error is here. (Hint)
  2. t2t2t

    Could use some php include help here...

    Well, the most obvious question would be is it a .php file? (just checking)
  3. t2t2t

    Vending Machine (Game)

    You get nothing for inserting nothing. I insert bottled air
  4. t2t2t

    Guess Who Posts Next

    Very wrong. I guess a male will post next.
  5. t2t2t

    CSS Warning

    Actually, diabolo said span .switch WITH space between them. This rule means CSS will look for any element with class "switch" and which is inside a span element. But if you take space away, it will look for span element with class switch. (space and > mean "Look inside for...")
  6. t2t2t

    Could use some php include help here...

    Use relative paths, eg. If your file is under public_html: <?php $ID=1; include("thirdchord_0_8_4/trackGrid.php"); ?>
  7. t2t2t

    Vending Machine (Game)

    You get bytes. I insert 2009
  8. t2t2t

    happy newyear

    Happy new year from the future!
  9. t2t2t

    How to set up forward/reverse proxy in apache?

    I think you're looking for redirecion by apache. Insert following in .htaccess (Place it in the root of web directory): Redirect /http-bind http://localhost:5280/http-bind BUT I'm not sure if this works with ajax calls.
  10. t2t2t

    javascript help

    <html> <head> <title>Test</title> <script type="text/javascript"> <!-- function radioTest(theForm, amount){ j = 0 for (i=0;i<theForm.elements.length;i++) { if (theForm.elements[i].type == 'radio' && theForm.elements[i].checked) { j++ } } if(j < amount) { alert('Please choose every...
  11. t2t2t

    asp scripting enabled?

    It won't display when seen in web browser (seen in ftp and cPanel's filemanager) There can't be multiple .htaccess files(EDIT: At least in one (1) folder), it's like having 2 "New folder"s on your desktop (2nd one gets renamed to ...(2))
  12. t2t2t

    Forum game <King of the hill>

    I write a virus that infects all copies of linux, poison ichwar's drinking water, build a hill and claim it. Then I turn myself into a robot with invisible shield barrier covering myself.
  13. t2t2t

    I have no idea about my blog theme

    Nope, but if the page looks weird, you can guess correctly most of the times that a tag is not closed.
  14. t2t2t

    I have no idea about my blog theme

    Only in case there are unclosed <div> tags. You can easily check this in some editors in which you can collapse/expand tags. But usually you can use Inspector tool (Chrome has one built in, Firefox users can get Firebug, Opera also has something) to check for logical errors (In this case posts...
  15. t2t2t

    I have no idea about my blog theme

    Find your current theme in theme folder and open up index.php. Find line similar to following (taken from default theme): <?php endwhile; ?> And add before it </div>, so it's like this: </div> <?php endwhile; ?> (If you can't find it, feel free to attach the file to your post)
  16. t2t2t

    asp scripting enabled?

    Create ".htaccess" in root directory of your website (/public_html/) and write in it: AddType application/mono aspx ascx asax ashx config cs asmx axd (If this helps I'll add it as a comment to KB article)
  17. t2t2t

    I have no idea about my blog theme

    You are missing a </div> after end of post:
  18. t2t2t

    I have no idea about my blog theme

    Can we have a link or screenshot of the problem? We can't see through your eyes you know...
  19. t2t2t

    [php] Help with a parsing program

    Here's something I quickly wrote: function getNumbers($testfor) { preg_match_all('/[0-9]{1,}/', $testfor, $out); return $out[0]; // Returns array of numbers } However, for "<td style="padding-top:4px;">5971/9000</td>", it also matches 4 in padding-top:4px;
  20. t2t2t

    HTML or PHP

    You really don't need to have ip included in form (besides the reason of it could be changed), just have it in mail text, etc: mail('caffinated@example.com', 'My Subject', wordwrap("Line 1\nLine 2\nLine 3", 70)); to mail('caffinated@example.com', 'My Subject', wordwrap("Line 1\nLine 2\nLine...
Top