Search results

  1. J

    Beginning Flash and Animation

    I just wanted to add another question to this topic - regarding animation... I want to make a door and I want the door to open. I am very new when it comes to animation and dynamic coding so I am wondering where do I actually start. Do I use a picture of a door or do I have to make the door...
  2. J

    Beginning Flash and Animation

    thanks for that, I understand that JavaScript and CSS may be able to do most of what I want... So I will stick there for now.
  3. J

    Beginning Flash and Animation

    I am not sure if this is the right forum, apologies if it isn't. I am really keen to start learning flash and animation. My XHTML, JavaScript and PHP is really starting to get concrete and I'd like to move onto more complex stuff - to really get web pages to "dance". Besides the adobe...
  4. J

    XHTML Output with PHP

    I have figured out the reason: I needed to code the table tag like this in order to actually see the cells. Effectively I had created a border value of "0". <table border="1">
  5. J

    XHTML Output with PHP

    Apologies, my coding was a little messy; here is the correct coding I used: <?php $name = "John"; $address = "123 Main Str."; $output = " "; $output .= "<table style= \"border: 1px solid black\ "> \n; $output .= " <tr> \n"; $output .= " <td>Name</td> \n"; $output .= "...
  6. J

    XHTML Output with PHP

    I am using Aptana for an exercise coming directly from a php study guide. The idea is to create a very basic table to understand more about creating XHTML output in the PHP language. I am using the output method. I have also tried the same exercise using Heredocs but still have the same...
  7. J

    How do I link an internet website to my personal webpage with html code?

    If I understand you correctly, you merely want to create a link on your website that a user can click to be taken directly to another website? If so then this is the code you will use: <a href="http://www.theirsitesname.com">click here</a> Obviously the text "click here" can say whatever you...
  8. J

    Form Question

    I asked this question in a previous thread but I think I overloaded it with a whole lot of other questions. I still haven't got a reply on that so I have broken it down to this and would appreciate any help or suggestions. I want to try and simplify it for myself. As I understand it there...
  9. J

    <base> Element in CSS

    I understand how to use the <base target="..."> statement within the <head> section of a document in order to have all links open in an iframe. However, I actually intend for every link across the site to open in the same target. Is it possible to write the <base target="..."> statement into an...
  10. J

    member login and registration function

    Hi, can anybody tell me where I can get some good information on how to build this function into a website? Alternatively if anyone can help me themselves that would be awesome.
  11. J

    Advancing my Forms

    Hi, I learned how to create a contact form on this site. It works perfectly. However, I would like to take that basic form and extend it so that it contains much more functionality. All of these forms would need to send an email to a specific address - as with a normal contact form, but there...
  12. J

    Content Management

    Thanks for that. The first issue I had is with a contact form. I learned how to do one on this forum, so it's pretty straight forward for me to simply code one into the page, develop the php page and it's done. With joomla, I can't seem to do that in the text editors. So if I wanted a...
  13. J

    Content Management

    I had a request to take over the management of someone's site. The site has been done with a CMS - Joomla in particular. I have to say that I am struggling to get to grips with it as it feels like the program limits the capabilities that normally come from straight forward coding. I'd be...
  14. J

    Problem with Forms

    great, i got it thanks everyone!
  15. J

    Problem with Forms

    I posted on here recently to find out how to get a form to work. I had it working but now there is a problem with the fields themselves. I have four fields in the form - name, email, subject and message. In the email I receive from the website the name comes up as the subject, the subject and...
  16. J

    Changing Colors

    I have a logo which I have designed for someone. It is a globe (as in earth) that is black with white outlines. I want to change it to blue with yellow/gold outlines. Do I actually have to paint the new colors in or is there a way to just swop them. I have tried replacing the colors but it...
  17. J

    Table not centered in IE

    Thanks everyone for the input. I went with putting the entire table in a div, and using CSS to create a "centerdiv" class.
  18. J

    Table not centered in IE

    hey, thanks for that. Unfortunately my margin has already been set to auto and it still doesn't center. I even tried aligning the left and right margins separately. :confused:
  19. J

    Table not centered in IE

    Hi, I have a table on my page which is set to be in the middle of the page. This comes out fine in Firefox but in IE the entire table is aligned to the left of the page. What are the possible causes of this and is there a way to fix it? Thanks,
  20. J

    Collecting info from forms

    Nevermind, I realise how silly that last question may have sounded. After your answer, many forums and tutorials and a whole lot of frustration, I have got it working!. Thanks again for your reply it set the foundation for me learning so much more about PHP!!:)
Top