Jump to content

pixy

Members
  • Posts

    295
  • Joined

  • Last visited

    Never

Everything posted by pixy

  1. You have to put session_start(); before anything is sent to the browser. I've never had a problem setting the session and then redirecting whatsoever.
  2. It's too wide for my resoultion.
  3. pixy

    Design Idea

    Oh, I know what you mean! Yeah, that would be really awesome. Thanks for the idea. I think i'll keep both. The breadcrumbs are great, but the quicklinks are for remembering pages they go to often and don't want to navigate there the long way. [quote author=jcombs_31 link=topic=102264.msg408275#msg408275 date=1154541949] I personally don't think I can critique anything drawn on a piece of paper.  Try to design something with an image editor and then post again. [/quote] I have been working on it. I'll post it tomarrow or something so you all can see the progress and how it's been changed based on suggestions.
  4. ^ I tried that and got this: Browser Estimated queue time: Firefox 1.5.0 2 hours Mozilla 1.7.8 69 minutes Opera 8.50 69 minutes And it said it couldn't be completed sing the queue was over 60 minutes.
  5. pixy

    Design Idea

    Yeah, I don't know about the colorscheme. It's not all going to be brown (I hope to incorporate colors based on the section of the site they're in) but i'm still working on making the paper part. I'm having a REALLY hard time creating the paper in photoshop. [quote author=Colleen78 link=topic=102264.msg407014#msg407014 date=1154408140] Wow, that looks awesome! I think making the quick links a breadcrumb navigation instead would be a very useful feature! [/quote] I'm not sure what you mean by that. Care to explain?
  6. The main page looks too horizontally wide and not vertically tall for me. I don't know, I just don't like it. Other than that, it's nice. It doesn't really stand out to me, but it's well designed.
  7. It's lovely for me. Easy to navigate, lovely colorscheme. I do agree with the person above, if you are going to be offering lots of scripts you might have to re-think the menu design. Perhaps break them up into categories?
  8. I don't like the thick borders on your tables, and I agree with everything that has been posted so far.
  9. Just glad I could help! :)
  10. I said the error! Its inserting an empty query into the database. It's STILL doing that and I made the exact changes that were recommended. Sorry about the huge texts, but I don't have anywhere to upload it...
  11. PART TWO: An error occured in script 'C:\wamp\www\Wizarding World\admin_add_item.php' on line 97: [b]EDITED BY akitchin:  too much output[/b]
  12. I fixed all that stuff and STILL get errors. This is what it's giving me: (for easier reference, line 97 is the line with my query and line 100 is where I echo a sucess message.) PART ONE: Please upload a fileAn error occured in script 'C:\wamp\www\Wizarding World\admin_add_item.php' on line 97: [b]EDITED BY akitchin:  too much output[/b]
  13. I could've sworn there was some website where you could plug in the URL and it would send screenshots in safari. I'll go look for it... Here: http://www.snugtech.com/safaritest/
  14. ^ Yes, you can. Like so... $result = mysql_query("SELECT * FROM users WHERE username='user'"); if (mysql_num_rows($result) == 1) {   echo 'You are in the database!'; } else {   echo 'Could not find ya.'; }
  15. Maybe do a str_replace for spaces with an underscore? I don't know if that would work, just a guess. Then when you have it get it from the database you'd need to take them out again and replace them with spaces.
  16. I never did understand the point of karma.
  17. pixy

    Design Idea

    [quote author=steviewdr link=topic=102264.msg406434#msg406434 date=1154351368] Layout looks ok. Be careful of colours. Test it out with colours before you begin development. -steve [/quote] I said I wasn't actually going to use those colors, I was just using some fun colored pens. ;)
  18. Just do this: if ((!isset($_COOKIE['name'])) || (!isset($_COOKIE['pass']))) {   echo 'Log in please';   die(); }
  19. Well backticks are for the actual SQL when you run a query in, say, phpmyadmin, but singlequotes are what you use in PHP for executing a query.
  20. Not all servers support $_SERVER['HTTP_REFERER']...either that or it has to do with the browser, which may choose not to send refering information.
  21. Don't you want to echo $result?
  22. No no no, I hate the green text. It's practically become the bane of my existence. haha. There've got to be other ads. I think yahoo does ads, too. Just post a notice below them "don't click unless you are interested in purchasing something."
  23. Hello there, welcome to PHP freaks! Happy postings.
  24. PHP has no way of reporting that the mail was sent, it just tells the mailserver to send a message. I'd say just double check your variables and such.
  25. ^ That means you need to change the query. You're trying to select information from a column called "membername" which doesn't exist. [code]$recieve = "SELECT * FROM users WHERE username='".mysql_real_escape_string($username)."' AND `password`='".mysql_real_escape_string($password)."'";[/code]
×
×
  • 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.