Jump to content

roondog

Members
  • Posts

    212
  • Joined

  • Last visited

About roondog

  • Birthday 02/12/1981

Previous Fields

  • Languages
    XHTML, CSS, Learning Javascript and PHP

Contact Methods

  • Website URL
    http://www.roondogid.co.uk
  • ICQ
    0

Profile Information

  • Location
    Cambridge, England
  • Interests
    Football (soccer), Xbox360, drinking, films, music

roondog's Achievements

Member

Member (2/7)

0

Reputation

  1. roondog

    Html exam!

    I've just paid for the exam. Has anyone taken it/ used it for jobs etc. Also does anyone know how long it takes for the information to come through?
  2. Cheers for the advice, i'm working on a revision with a friend who works in it recruitment. They said exactly the same.
  3. I'm not sure if this is ok to be posted here, if its not then please take it away mods.I am about to apply for my first Web design job and i'm writing up my covering letter that basically sells me to the company. could some kind soul have a look and see if i am heading in the right direction and maybe add some suggestions.the job add is herehere is the letter sell.doc
  4. Its still as its always been.
  5. I may have misunderstood but can't you use inline style.<table style="display:none" border="0" cellpadding="0" cellspacing="0" width="100%" height="108">
  6. I'm using phpmyadmin for mysql and want to set a timestamp to british summer time does anyone know how to do this?
  7. I had the same thoughts. I went through the basics and learnt them but couldn't anything to show me some practical appliactions which is the way I like to learn. The only thing I have done with javascript is this. I am very sure I have not even scratched the surface with javascript.
  8. If your not going to put anything in the left and right surely you just need one centered div.
  9. roondog

    Centering the whole page

    If the code s@m and I have put in earlier is not working theres is probably something else in your css affecting it. I would follow S@m's suggestion of starting a fresh starting wiht centering the page then put everything else in.
  10. There must be something pushing the table down. I would suggest putting the php include after the body take then, while designing, give the table a border just so you can see whats going on. You can always take the border out when you are finished.I would also suggest you have a look into tabless layouts, this should come quite easily to you if you are already using css.
  11. Ben have a look at www.gumtree.com there are lots of ads on there for small website companies and they seem to offer between £100 - £200 for sites. So I think you did ok for the cctv company but that lecturer did alright out of you.
  12. right i've got another question now. Every story has a number how do i get it to show just a certain amount of stories. Bearing in mind the top number is going to change so i cant just say between this number and this number.
  13. i should have explained the div thing a bit more clearly.I have this code. while($row = mysql_fetch_array($result)) { echo "#".$row['storynum'] . "<br /> " . $row['headline']."<br />".$row['published']."<br />".$row['story']; echo "<br />"; } i tried to do something like this while($row = mysql_fetch_array($result)) { echo <div id="news">"#".$row['storynum'] . "<br /> " . $row['headline']."<br />".$row['published']."<br />".$row['story']</div>; echo "<br />"; } but it wouldn't work. what should i do instead.I've solved this part now looked back over the tutorial and used the table example.
  14. I'm working through the php tutorials and am making a news script. In my table I have the articles numbered they also have a headline a timestamp and the story. What I want to do is only select stories from a certain month and then put them in order starting with the latest. I know i can use ORDER BY but how would only select those from a certain month.Another question, if i want each story in a new <div> so I can style them how to i do that? Do have to do a query for each story?
  15. Thanks for that. I think I'll keep reading through the tutorials and i'm sure all will become clear. A fixture is a date in a sporting calendar e.g a game of football. So the fixtures for a team would be a list of all their games.
×
×
  • Create New...