Recent content by Mark Alexander

  1. Mark Alexander

    Tuition Fees

    Universities need more funding to compete, especially on an international level. It's all well and great having a degree but if the quality and reputation of the institution slips it's going to decrease the value of the qualification. Looking especially at some of the American schools that are...
  2. Mark Alexander

    Must be doing something right....

    If you can speak Portuguese you'll be able to read all about their strong commitment to ethics and innovative thinking on the designer's about page. :p
  3. Mark Alexander

    Must be doing something right....

    Good luck with the legal stuff considering they're in Brazil.
  4. Mark Alexander

    Must be doing something right....

    Maybe I'm being stupid, but I don't get it/see it.
  5. Mark Alexander

    Removing content through css pseudo-classes?

    Well technically: <h1>Kevin<span> </span><em>Dendievel</em></h1> h1 em { color:#ff0000; } h1 span { display:none; } But that's just terrible. :)
  6. Mark Alexander

    Getting line breaks to work in a textarea tag

    Well what is $sig when echoed out? Does it contain the <br /> tags as expected? If it does then the problem comes at preg_replace(), if it doesn't then it comes at nl2br() or before.
  7. Mark Alexander

    Getting line breaks to work in a textarea tag

    Dunno, that code works for me perfectly. The only things I can think of is that the input doesn't have newline chars to begin with?
  8. Mark Alexander

    Personal Website Critique

    First thing I noticed is that it doesn't work when you vertically resize.
  9. Mark Alexander

    Anti-charity poster

    You could add in the collection companies, chuggers, etc. A lot of the time they're a separate company hired by the charity, so their cost comes in before the charity's own admin costs.
  10. Mark Alexander

    Getting line breaks to work in a textarea tag

    Try using \r\n explicitly. PHP_EOL isn't for what you're trying to do. It works for the system PHP is running on, not the system of person who is viewing the webpage. What OS are you/your server using?
  11. Mark Alexander

    How do I find my MySQL username/password?

    How are you going to run commands if you don't remember your password? MySQL :: MySQL 5.1 Reference Manual :: B.5.4.1 How to Reset the Root Password Assuming it just uses root, like a lot of these server packages do. If you have root access already then you can update users/passwords as normal.
  12. Mark Alexander

    E.A.S.Y website critique... Be Brutal :)

    Rather amusingly for some other regular readers (:)), I'm going to tell you not to use tables like that. Don't use images for text either. Both are bad, bad, bad. Scale down your logo image to the size you need it so the awful browser scaling algorithms don't make it look bad. Think about...
  13. Mark Alexander

    Acrobat, PDF Saving

    It's just a sampling problem with reader (probably, but you could take a screen), it'll print fine, don't worry. Actually I think there's a way to turn it off, something about enhance small lines or thin lines in options if I remember. Edit: Ok found it it's in Edit->Preferences->Page...
  14. Mark Alexander

    Is it sometimes ok to use tables for non tabular data?

    I think most developers understand content and presentation separation. It's less likely they'll know uncommon CSS attributes and browser targetting, or about a specific nuanced solution to a problem. I'm suggesting methods that people will already understand by simple virtue of knowing...
  15. Mark Alexander

    Is it sometimes ok to use tables for non tabular data?

    But I disagree that it's maintainable or as easily comprehendable. Your solution has multiple solutions for different browsers and uncommon CSS statements. Do you think you could do the whole thing by memory, cross browser and all? What about an average web developer? I think most could...
Back
Top