Jump to content

thewooleymammoth

Members
  • Posts

    768
  • Joined

  • Last visited

    Never

Everything posted by thewooleymammoth

  1. I have no idea what this site does, Why is it different than other blogging sites? a sample username/login would be nice.
  2. You may need to be a bit more specific on what you mean?
  3. i must have been tired when i wrote that. If you're worried about security i would check to make sure it is set. isset doesnt take up a ton of resources. Unless you have a server thats about to explode i really wouldnt worry about a couple extra checks.
  4. ok well then that seems good as far as checking if those things exist.
  5. what are you doing with the errors array if there is an error? If you just want to declare that there was an error the array may not be necessary. <?php $error = ""; if(!isset($_POST['comment'])) $error = "No comment was entered. <br />"; if (!isset($_SESSION['articleID'])) $error .= "There was no article ID. <br />" if (!isset($_SESSION['memberID'])) $error .= "There was no member ID. <br />" if(strlen(error) > 0){ echo $error; //handle the error here. }else //add the comment. ?>
  6. It seems ok. It kind of depends on what your doing exactly.
  7. Im not sure i understand your question, but if you already have the values you want in a variable and don't want the user to change them, then there is no reason to populate a form with them. Just use the values you have.
  8. also why are you causing it to sleep for 2 seconds? that doesn't seem like a very efficient idea.
  9. so when you perform a blank search, you want it to fetch all the results from your database and its only returning one result?
  10. http://w3schools.com/php/default.asp I dont think there is anything wrong with that code. I would make sure your knowledge of basic php is up to snuff. If that is not runnign right you might have to post more of the code so i can see what else is going on that could be screwing it up.
  11. I havn't ever actually used that function, but from what i read here http://php.net/manual/en/mysqli-stmt.bind-result.php it looks like you would be ok to not check them. I would recommend just taking out the checks and trying it out with values (or lack of values) that you know may screw it up.
  12. I think this is what your looking for... <?php if ($News_1_Status=="Y"){ ?>//removed echo and added this. <div class="newstitle" align="left"><?php echo $News_1_Date;?> <a href="<?php echo $News_1_URL;?>"><?php echo $News_1_Name;?></a></div><br>; <?php }else echo "Have a nice day!"; ?>
  13. the register works, and i can move places? i think? a map would be good. Also, You could really benefit from some css in the main area. playing kind of reminds me of reading server logs. Seems like it's a decent start though, just got to keep plugging away.
  14. If you want to post to the same page your at, action='' //or action='?this=works&also=' [/code] is all you need. Problem solved.
  15. using regex on your form input and mysql_real_escape_string() takes out almost all sql injections. Someone has got to be pretty clever to get through that. It also fixes your verification issues.
  16. If you want media rich look with less media, i would go with a darker background like adobe does. You could also get jquery and jquery plugins for some animation/interactivity. They can be relatively nice and light. One well done interactive image would look better anyways. I would also get rid of all those images. Images are whats gonna take up most of your bandwidth. If you want to show off your images i would use small thumbnails and only use big images if they ask for them.
  17. Interesting, It's working great for me from a coffee shop and through a vpn in switzerland. Is it still timing out for you? Also i added some ajax loading, if anyone feels like critiquing that feel free.
  18. Good suggestions, I'll play with the text colors, however, the blue behind the words intouch is a specific hex color that matches the color in the app. Once i get the demo of the app and maybe some screenshots you will be able to see. Ill give this thread a little bump when that happens. I've been putting a ton of time into the app, I suppose it's about time to start working on the website again. If any of you have ever dealt with trying to start a social networking type site, I was hoping for some advice on content that would tempt people to share it on facebook or wherever. I was thinking of making a funny flash animation (Youtube) that could possible spread like wildfire (hopefully). But thats my best idea so far. As you know, the more people who use it the more it will snowball. The hard part is getting the ball rolling.
  19. I totally agree with the above comments, they have been added to my list of things to do. Thanks!
  20. To make it a little easier to click the link http://www.intouchapp.net
  21. I made an android app for a class, Hopefully it gets big, but to help it out i made a website The content is not alltogether yet, so take it easy on what the pages say. More the actual design im looking to have critiqued. intouchapp.net
  22. The one i use, and which is supposed to be most readable is ariel/helvetica. http://www.wilsonweb.com/wmt6/html-email-fonts.htm
  23. Text is hard to read, and it's pretty dark. Kinda makes me feel sad inside, other than that, looks ok. I would also change the font. 960.gs has a good system, and it resets your default text font / size to a much better font.
×
×
  • 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.