Search results

  1. garrensilverwing

    Regular Expressions Lowercase

    I'll try adding the /i and see if that helps that is an example of what i am trying to match. i want to grab everything that is inside the brackets, maybe that will clear it up a little?
  2. garrensilverwing

    Regular Expressions Lowercase

    preg_match_all('/\[(\w+) "([^"]+)"\]/', $game, $matches, PREG_SET_ORDER);hey guys, I have this regular expression that is supposed to grab information from a large string. unfortunately it only works if i strtolwr the entire string first. i want it to grab information as is, without having to...
  3. garrensilverwing

    Getting Non-Syndicated Info from Another Site

    thats a good idea i'll try that first, but seeing as it is public information i don't think it will be a problem extracting it from their website in the manner mentioned above, but i will definitely try that first
  4. garrensilverwing

    Getting Non-Syndicated Info from Another Site

    I want to grab information from another site that is not in an RSS feed. An example of what info I would like to grab can be seen at http://www.uschess.org/msa/MbrDtlMain.php?13923823. The information will change based on the USCF profile i need to pull up which can be done easily with the USCF...
  5. garrensilverwing

    Custom Fonts in Internet Explorer

    sweet leviathon it worked! finally jeeeeez I'm going to book mark the bajeezus out of that page.
  6. garrensilverwing

    Custom Fonts in Internet Explorer

    That's not working for me either maybe its because I am trying to use it in my style sheet. If I have to I can try putting in my html documents but I don't really want all that extra code running around...
  7. garrensilverwing

    Custom Fonts in Internet Explorer

    I thought IE was supporting custom fonts since 5.5. I am trying to get it to work with IE7 and 8. It works with everything else... :(
  8. garrensilverwing

    Custom Fonts in Internet Explorer

    Hey guys I'm working on a site for a friend of mine and he has a brand set up for his company. This brand has its own font and I'm trying to get it to work on the website. I got it to work with every browser except for internet explorer. I searched with google and couldn't get anything that...
  9. garrensilverwing

    Ajax Form Validation

    Thanks a million misson! the simple answer to all of your questions is this was just a rough draft where I was looking at a bunch of ajax tutorials. I threw this all together and thats why the style is inconsistent. I actually got it to work how I wanted before you replied but thanks for all the...
  10. garrensilverwing

    Ajax Form Validation

    as far as the redirect goes I tried adding a header('location:') to the ajax script but all it does is load the new page inside the current page. here is my php code: <?php include('../functions/index.php'); include('functions.php'); $results = mysql_query("SELECT Email Username FROM...
  11. garrensilverwing

    Ajax Form Validation

    Hey guys, Been a while for me. I have a new problem that I've run into recently while constructing a registration form for a website. The form is at http://www.denverchess.com/register. I got 99% of it working but there are two things. #1 -- if you submit the page with incomplete/invalid...
  12. garrensilverwing

    Small css problem

    instead of putting the image in there as an object why not put it as the background to the header div. That way you can put the status bar div's position to relative and float it to the right inside the header div. that way instead of it hugging the side of the body (from the absolute...
  13. garrensilverwing

    Unclickable Links

    thanks, dunno why i didnt think of that :/
  14. garrensilverwing

    Unclickable Links

    http://www.denverchess.com/announcements/?id=13, the likes in the announcements listed on the right are unclickable for some reason in my version of firefox (i assume its the latest version) and they also don't work in Safari. They work fine in IE 7 and IE 8 so I don't know what the problem is...
  15. garrensilverwing

    Denver Chess Club

    ah ok, i got it passed as well as most of the other pages, how about an opinion on the design? :D
  16. garrensilverwing

    Denver Chess Club

    thanks for the browser shots but the rest doesnt really tell me much of anything, was hoping more for personal opinions/professional opinions of the overall design also: why cant i put <h2> where it says i cant? and why does it matter if multiple classes use the same color? thats how i learned...
  17. garrensilverwing

    Denver Chess Club

    I spent the last couple weeks working on this website for a local chess club that I attend, let me know what you think: http://www.denverchess.com I know there is very little content at the moment only because the site was just launched and I haven't received the information to put in yet...
  18. garrensilverwing

    Three Options

    thanks for the input, generally PGN format games are very low memory and it will probably take a long time to reach any kind of memory limits so i think i'll go with the third option, to make it easy
  19. garrensilverwing

    Three Options

    I am working on a website for a chess club and one of the features I am going to add is a database of all the games played at the club or sponsored tournaments. I have three ways of going about this: Store the games in their raw PGN state. Extract all the data to store in separate columns in...
  20. garrensilverwing

    wayward div

    ah ok, i wasnt sure how to go about validating a php document but i guess i could have just got the source from the output and validated that! thanks a lot misson! problem solved, also i removed the <h4> parent thing...
Top