Jump to content

CorkyMcDoogle

Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

CorkyMcDoogle's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. The colors hurt my eyes (literally). It's like when you turn the bathroom light on in the middle of the night and your eyes adjust real quick. Thats the same feeling I got when I opened it. Another problem is the way it looks in FF. The body overlaps the logo. Here is a pic... [attachment deleted by admin]
  2. I'm not sure what happened with the dates/ordering. Something must have happened to the database this morning because when I checked the site all of them had the same exact post date. (Screwing up the order) They weren't like that yesterday. Maybe thats why you had trouble posting? I think my host must have bugged out this morning somtime and reset some stuff. What type of problems were you having? As for the slashes... I thought that was part of the whole 'coder' post lol. I'm not sure why that was done either... none of the other posts with quotes add slashes...
  3. Thanks for pointing that out... I didn't understand what you were talking about because that problem isn't there in Firefox. So after a couple minutes of thinking I tried IE and I saw what was happening to you. I fixed it. Again, thanks for testing it. It could have been a unreported bug for a long time.
  4. [quote author=steviewdr link=topic=104056.msg415018#msg415018 date=1155484744] I added a complaint in - and it would not bring me to the post page - it just kept going back to itself. [/quote] I don't understand what you're saying here. It keeps going back to which page?
  5. Hello... I've been working on a new web site. I basically just started it as a way to learn PHP. I think it has served its purpose pretty well... now I'm trying to turn it into an actually worthwhile site. http://www.confemo.com Please tell me how I can improve the site for design or funtionality. Thank you.
  6. Yea but I'm trying to get multiple types into one WHERE. If type is set to 'all' I want it to show all types. Something like... [code]WHERE type = 'type1 OR type2 OR type3 OR type4'[/code] How can I make what I want fit into the $type variable?
  7. Hello... I'm trying to set up a way to sort database results by the type of article it is. I have links Show: Type1 - Type2 - Type3 - All. The single type links work correctly but when I want to show all of them together nothing comes back. It's because the syntax I'm using is not correct I'm guessing. Whats the correct way to ask for multiple types in the WHERE? [code]switch ($_GET['type']){ case 'type1': $type = "type1"; break; case 'type2': $type = "type2"; break; case 'type3': $type = "type3"; break; case 'typ4': $type = "type4"; break; case 'all': $type = "type1,type2,type3,type4"; break; } } else { $type = "type1"; } $query = "SELECT DISTINCT type, title, itemtext, DATE_FORMAT(postdate,'%b %D, %Y - %l:%i %p') AS postdate FROM item WHERE type = ('$type') ORDER BY rand() LIMIT 10";[/code]
  8. Hello... I think this question is more php related than web design so I will ask it here. I've been working on layout and it involves wrappers and containing divs to center it and put things where I want them. I've created the layout in one file and splitting it up later like I've read to do. How will I include each part when each part has to be inside of the wrapper? If I put the wrapper div inside the file the the left coloumn is in for example, when I include the content box, its outside of the wrapper. Here is the layout in one file. [a href=\"http://metaltactics.com/version2.php\" target=\"_blank\"]http://metaltactics.com/version2.php[/a] Thats how I want it to look but I need to chop up the header, leftcol, content box, footer, etc into seperate peices so I can edit them individually if I need to. I've heard of the program Smarty from reading forums. Can someone explain exactly what this is and if it would be smart to use it in my situation? Thanks
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.