Jump to content

ober

Staff Alumni
  • Posts

    5,327
  • Joined

  • Last visited

Everything posted by ober

  1. There are somethings you just have to write yourself or pay for.
  2. Oh where to start? 1) 90% of the text is bold. Bold should be used sparingly at best. Reading bold text is annoying and how are you going to make something stand out? Changing the color is nice, but changing bold color just looks tacky. 2) I'm not really keen on your seperator lines. They're too thick and you're really wasting bandwidth if those are images (I assume they are). 3) Get some more action out the nav. The color change is so slight that you barely notice it. Change the background color, swap some borders... do something. 4) Your CSS file has to be one of the biggest CSS files I've EVER seen. With that much detail, you should have a much better looking site. Your main layout CSS file should be less than 4KB. Anything more than that and your HTML is going to show up before your styling... and people on slower connections (or if your server slows down for some reason) are going to see a really horrible looking page until your CSS file arrives. You can split it up and only include certain CSS files on certain pages. I noticed you had a lot of sections for specific content. You should only be including that CSS on the relevant pages! 5) If the logo didn't say it was a scuba site, I never would have guessed that. Get some pictures up there of someone under water. Throw some scuba gear in the background... do something to make me think in my head later that that is the site I want to be at for finding diving locations, etc. Right now it's just a bunch of text and lines. BORING. 6) Get a footer. Right now your main content just hangs there ... close it up with some copyright info or an extra link to the contact info or something about who designed it. I hope that helps.
  3. I'd give it an 8.5. Looks pretty solid to me and the look of it is great.
  4. I would, but my ISP blocks port 80 and won't give me a static IP. I know the static IP can be fixed using dynamic DNS, but the blocking of port 80 pretty much kills it. If you really want to do this, I'd suggest doing some research because there are a lot of security issues to consider.
  5. That would pretty much remove dynamic sites from the list, or it would make it pretty useless. You'd have to download the sites on a pretty regular basis, and who wants to fire off a 250mb+ download every day??
  6. I will change the name of that thread Mark. Thanks for pointing that out.
  7. Unfortunately, we don't know either. We can only hope that the admins are working on a way to resolve it. In the mean time, I will express how sorry that we all are about the problems we've been facing. I've noticed that if you can't post in PHP Help, you can sometimes post in PHP Newbie help. Most of us scan both, so asking in one will probably get the question answered.
  8. Now we're getting somewhere :) The main header area does definately need some work. You're heading in the right direction, however. I'd make a distinction between the footer and everything else, or at least more of an apparent distiction. Your line on the right of the nav just kinda stops at one point and it looks odd.
  9. If it's a question of signal, the best solution is to just get a booster antenna for your router. What you're suggesting won't work because the only antenna you have in the laptop is a reciever. You need a transmitter for the B device to pick up the signal from the laptop.
  10. This would be waaaaaaaay easier with a database, but you're basically going to have to read the file into an array, shift part of the array, insert the new content in the blank space and write the data back out to the file. This is why databases exist. This is a very inefficient way to handle this problem.
  11. All you have to do is run a seperate query for each with the field in the WHERE clause. Then run mysql_num_rows on it and if you get a value more than 0, then something exists matching that input. After each query, set a boolean variable depending on the result of the mysql_num_rows(). If it's false at any point (meaning one of your mysql_num_rows() results was 0, then skip the rest of the processing and show the form again.
  12. I don't understand why you have 2 else statements or why there is a semicolon after the closing bracket of the if/else statements. The semicolon is going to halt execution and not do the else regardless of what else you have. Also for sessions, just make sure you put session_start(); at the very top of the page (directly after the opening PHP tag and make sure there is no space or HTML before that. Then all you have to do is set your variables: [code]<?php $_SESSION['user'] = $_POST['username']; $_SESSION['pass'] = $_POST['password']; $_SESSION['leve'] = $_POST['level']; ?>[/code] Then as long as you put session_start(); at the top of the rest of the pages you use, you should have access to those variables and you can show or hide different parts of your site depending on what level people are at. And if those variables aren't set, just redirect them to the login page.
  13. $_SERVER['HTTP_REFERER'] will get you the page it came from. And yes, you can pass arrays to functions, but leave off the brackets.
  14. Well, 16:00 would be 4:00 PM.... but beyond that, I'm not sure.
  15. [code]$file=file('test.txt'); $count=count($file); $random=rand(0,$count-1); echo $file[$random];[/code] Color me wrong... you don't have to specify a path. The above works for me.
  16. Please tell me that this is all generated from the same page and you just want to look at the status of a field in a database of all your users. Please? Otherwise, that's gotta be the worst design of a website I've ever heard of.
  17. You need to CHMOD the upload directory to 777.
  18. Correct, but relative to your webserver... not the c drive.
  19. You're going to want to use preg_replace(). If you don't know how to use regular expressions, check out this site: [a href=\"http://www.regular-expressions.info/\" target=\"_blank\"]http://www.regular-expressions.info/[/a]
  20. I think that's mostly correct, but you have to specify a path to the file.
  21. ober

    Error

    [b]DO NOT PM MEMBERS ABOUT YOUR THREADS WHEN YOU JUST POSTED THEM.[/b]
  22. If you're running PHP 5, you can test it with the following code: [code]<?php $time_start = microtime(true); // your function and calls go here $time_end = microtime(true); $time = $time_end - $time_start; echo "Ran Analysis in $time seconds<br/><br/>"; ?> [/code] There is a slight different way to do it if you're running PHP4. Use the following function instead of microtime(): [code]<?php function microtime_float() {    list($usec, $sec) = explode(" ", microtime());    return ((float)$usec + (float)$sec); } ?>[/code] Either way, I think the first one is going to be WAY faster.
×
×
  • 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.