Recent content by toad

  1. T

    What is the best way to design a website so that someone with no html...

    If the client wants to edit it then they should expect to encounter some formatting code, it's the nature of the thing. Perhaps your best bet though is to use as much external CSS as possible so the client sees more text than code when looking at the HTML. On a side note, I had to edit code...
  2. T

    I need some PHP help!?

    if (md5($password) = $row[$password]) { The equal sign looks wrong, try this instead: if( strcmp( md5($password), $row[$password] ) == 0 ) { ... }
  3. T

    does facebook text messaging cost for rogers phone?

    You have unlimited texting so no, it won't cost you.
  4. T

    I need help reading data from a mysql database in php.?

    Your select statement would look something like this: SELECT lastname FROM table_name WHERE firstname='firstname'
  5. T

    Where can I learn about HTML, Adobe, Dreamweaver, and Acrobat?

    HTML you can google for good tutorials. It's extremely easy to start learning. Adobe products are very expensive but your best bet at learning them is hands on. I would go to a school/university library that has them available to access and while you're there you can also browse for some...
  6. T

    Help with PHP / MySQL code.?

    Not too sure but try removing the @ symbol in your condition statements if ($queryResult = @mysqli_query($connection, $sqlString)) { to if ($queryResult = mysqli_query($connection, $sqlString)) { and see if it makes a difference
  7. T

    reading a text file in perl?

    What is an example of your input? My best guess is that the file is being read as one big string and so the while loop would execute just once or twice. Try adding a counter to see how many times the loop is being executed. my $counter = 1; open (MYFILE,'test.txt'); while (<MYFILE>) { ...
  8. T

    I bead something to water my garden.?

    This year, instead of using the hose to water my rather large veggie garden, I was wanting to use rainwater and soaker hoses, we have a bunch of these plastic barrels that would be great for holding water, I was thinking if I put them uphill of the garden then somehow hooked the soaker hoses to...
  9. T

    Would you vote for me to become the next Mushroom of the Year?

    You vote by giving this question a star.
  10. T

    What kind of paint wont wash away in the rain?

    I want to paint something that will be outside, but I don't want it to wash away, what kind of paint? acrylic? what?
  11. T

    I would like to find a copy of a record from the 1957 year; the name is "Patricia"?

    It is by Bill Black's Combo. Where can I find this?
  12. T

    How do you feel about people that use the "queer" label or date "queer

    people" to make a political statement? http://answers.yahoo.com/question/index;_ylt=AsC_4nYXwdMPkeWK__hrWGIjzKIX;_ylv=3?qid=20100504205512AA5xrTN I wrote this as my answer to the original question, but the way I feel about this is this: I HATE PEOPLE THAT FETISHIZE/TOKENIZE GENDER-VARIANT...
  13. T

    Who likes swing big band music? I love it!?

    My fav is Glenn Miller and the Andrews Sisters
  14. T

    Would people think I was really weird if I went around in bell bottoms?

    I know the styles from the 70s are crazy; but I like the bell bottoms:) and a couple of the shirts, not all of course. I like the Brady Bunch!
  15. T

    Would people think I was really weird if I went around in bell bottoms?

    I know the styles from the 70s are crazy; but I like the bell bottoms:) and a couple of the shirts, not all of course. I like the Brady Bunch!
Back
Top