Recent content by Sensibly Insane

  1. S

    PHP array from text file into HTML table?

    I need to create a table from a text file. So far I have this : $favourites = fopen("favourites.txt", "rb"); while (!feof($favourites) ) { $line_of_text = fgets($favourites); $parts = explode('=', $line_of_text); print $parts[0] . $parts[1]. "<BR>"; } fclose($favourites); But that doesn't...
  2. S

    Where would I be able to find bright, cute and fun clothing in melbourne?

    I need to add to my wardrobe, but whenever I go out shopping, I can never find anything I like. Everything seems to be grey or some other equally dull colour. Are there any shops where I can find clothes with a bit of colour?
Back
Top