Forum: PHP Jul 8th, 2009 |
| Replies: 7 Views: 495 Ok, that should be easy enough. The reason for that is that spaces aren't valid for http URLs, so you're going to need to encode the URL first. Before you output that value inside of the <a href,... |
Forum: Storage Jul 3rd, 2009 |
| Replies: 13 Views: 1,166 You're going to hate the start of this answer, but it really does depend on what you're going to use it for :-)
Let's talk about the technology first. Unless we're talking about a Solid State... |
Forum: PHP Jul 3rd, 2009 |
| Replies: 6 Views: 605 Hey cjay,
You're supposed to replace your code with what I provided. The 3 dots are an ellipsis and it means that something is being omitted. In this case you were supposed to put the rest of... |
Forum: Kernels and Modules Jul 3rd, 2009 |
| Replies: 4 Views: 964 You probably aren't going to find exactly what you're looking for, but a couple of sibling commands might be able to help. Check out `df` and `du`.
With `df` you can see the amount of space used... |
Forum: *nix Hardware Configuration Jul 3rd, 2009 |
| Replies: 2 Views: 863 LOL. This sounds more like a homework project than it sounds like a UNIX install, but I'll see what I can do to get you on the right path.
Typically, there's no "administrator" accounts on UNIX. ... |
Forum: PHP Jul 2nd, 2009 |
| Replies: 6 Views: 605 It depends on what you're trying to do. If you want that div to never show up, then you can do something like:
<?php if (!$author == "admin") { ?>
<div class='dateauthor'>
...
</div>
<?php... |
Forum: Website Reviews Jul 2nd, 2009 |
| Replies: 4 Views: 470 Hey Thanks!
What a great site (browsershots.org)! I hadn't known about them, but that made testing Konquerer much easier as my distro doesn't use it (nor was it in the rpm repos). For anyone who... |
Forum: PHP Jul 2nd, 2009 |
| Replies: 7 Views: 495 Could you be a little more specific? From what you describe, I can't tell if the problem is from the DB extraction (probably not) or from the way you are constructing links (more likely).
For... |
Forum: Promotion and Marketing Plans Jul 1st, 2009 |
| Replies: 4 Views: 551 I really like this idea, but hate doing anything manually. I spent the day cooking up a way to do this automatically and have posted it on www.internetstarting.com/tools . Hope that makes someone... |
Forum: Website Reviews Jun 30th, 2009 |
| Replies: 4 Views: 470 Hey folks,
I recently completed OnlineLinuxBackup.com (http://onlinelinuxbackup.com) and would love to hear your feedback. We sell Linux Backup Software that is truly best-in-class, but I'm not... |
Forum: HTML and CSS Jun 30th, 2009 |
| Replies: 5 Views: 571 Different genres have different numbers in terms of browsers and technology, but I'll give you what I'm seeing from my DVD Catalog website. That should be the closest I have to your target.
... |
Forum: PHP Jun 30th, 2009 |
| Replies: 7 Views: 495 That makes sense, glad you got it solved. I've found a lot of browsers will fix errors like a missing & which sometimes can make it harder to debug on a particular browser, etc.
Long term, you... |
Forum: Website Reviews Jun 30th, 2009 |
| Replies: 8 Views: 652 Looks like a good start. I've found there are always more opportunities to expand, change, etc. as you grow, but here's a quick review.
The Good
* The design is very sharp and attractive. I... |
Forum: Promotion and Marketing Plans Jun 30th, 2009 |
| Replies: 9 Views: 556 For myself, I used a directory submission service and within 2-4 weeks I was listed #2 in Google for the keywords I targeted. This won't happen if you are targeting "online marketing" or something... |
Forum: PHP Jun 30th, 2009 |
| Replies: 7 Views: 495 I think that just this one line is your problem. For HTTP, you don't include the ? for additional parameters. This line should be ... ?manufacturer=$manufacturer&model=$model... The extra ? is... |