Search results

  1. conor

    Generating Activity on the Forum

    i think thats a great idea. i have also seen it work very well on other forums.
  2. conor

    Calling Information from the database

    i will do something like that in the future but for the moment i want to get everything working at a basic level so im doing this: while ($row = mysql_fetch_assoc($result)) { echo "<a href=\"http://url.com/{$row["pagename"]}.php\">{$row["pagename"]}</a>"; } how do i get it to echo a second...
  3. conor

    Calling Information from the database

    thats not exactly what i mean... i'm finding this very hard to explain! Ill show you the table: +----------+ | pagename | +----------+ | Home | | link_1 | +----------+ i want the links to display like this: home | link_1 But i cant get them directly by id because if i add a link_2 to...
  4. conor

    how to change links colors using just html not css. to a specific link

    why not use CSS ?? with CSS you can apply hover techniques aswell. The use of HTML for styles is widely discouraged. there is a way to do it using outdated HTML: <a href="#"><font color="grey">link</font></a> I don't advise you to use that
  5. conor

    Dropdown menu from image

    it could be done with javascript but theirs no need since its entirely possible with CSS. the problem with your google search is your searching for a css dropdown with images. Theres no need for the images part. just do a normal css dropdown search and you should find something.
  6. conor

    Calling Information from the database

    hi, I need to call just one column from a database with MySQL/PHP. I don't want to state how many rows I want so that it will take all of the rows and I can add more rows without changing this code. The more tricky part of this is that i need to wrap tags around these rows. For Example i...
  7. conor

    I need help!

    i found it! change this line: <form name="login" method="post" valign="top" action="index.htm"> to this: <form name="login" method="post" valign="top" action="index.htm" style="margin-bottom: 0px;"> this sorts it out a bit but the page is still a bit off. check all of your margins
  8. conor

    I need help!

    the problem probably lies with this line <td width="143" valign="top" height="10" background="images/username.png"> you have set the height to 10px but the browser is interpreting the height as 32px. I can't figure out why....
  9. conor

    PHP help....

    there is a very easy language that you can use to create databases called MySQL. Its similar to exel but on a far more basic level. It is very secure - as long as you do it properly! :-) its exactly what you need.
  10. conor

    I need help!

    try adding this to the top. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> the adds could also be...
  11. conor

    CMS Website Design Assistance - Urgent !

    Joomla is defo your best bet. It does require a bit of getting used to by the client - it is a bit complicated in comparison to Drupal and Wordpress.
  12. conor

    Review My New Site

    yeah I agree. i'll keep that in mind for my next project. I don't really like rounded boxes myself but there almost compulsory at the moment. That idea i got from the kubrik theme (the default theme when you install wordpress). I can't wait till browsers start introducing CSS3 then I can to all...
  13. conor

    Review My New Site

    thats a good idea. i'll try and impliment that ajax thing on my next theme.
  14. conor

    Review My New Site

    the content is not up to me. He gave me content, told me that he wanted these pages and I made them. He has a CMS so he can edit content whenever he wants. As for justifying the pages, I personally tend to make small pages that you don't need to do a lot of scrolling on and that don't have to...
  15. conor

    Dreamweaver and CMS

    drupal and wordpress are both good and you could add to them to get the music thing going. joomla is a good idea for something like this. it is a big CMS with many functions. The one downside, in my opinion, is that joomla is a bit complicated for the lay man to get to grips with. Its a...
  16. conor

    Interested in opinions about my site

    yeah i agree its a bit hard to tell what the site is about and to many images. a lot of those image effects could be created with CSS and JavaScript
  17. conor

    Newbie – need directions

    if you own all the photographs then there shouldn't be any copyright issues. if your really intrested in webdesign then for software i recomend notepad or Eclipse. But if you just want it for this site and have no real interest then I recomend adobe dreamweaver. As for hosting. I find...
  18. conor

    Review My New Site

    yeah thats it exactly - a simple wordpress theme. But that is exactly what the client wanted. A simple easy to use CMS and a simple user friendly layout. The red was his idea (I advised him against it - but at the end of the day he is paying for it so he can have whatever he wants). I got paid...
  19. conor

    Review My New Site

    Hi, I would apprechiate any reviews of my new site and a bit of constructive criticsm. http://www.thestrats.com Also I would like you state a reasonable price that you would charge to develope something simular. Cheers
  20. conor

    What do I have to learn to achieve this?

    I think that if you know XHTML, CSS, PHP and MySQL for the database end then you should be able to achieve what you want. A bit of JavaScript wouldn't do any harm either - although you probarbly wouldn't need it since you know flash.
Top