Search results

  1. dickey

    Date/Calendar functions and parameterized queries help needed.

    I believe you have to upgrade your php to intermediate to do that. I got mine working on intermediate level. http://x10hosting.com/account check here and login with your forum account.
  2. dickey

    Altering elements made with innerHTML

    So I guess it worked right? just note that appendChild() should work though do you have a code you have been working on?
  3. dickey

    STUDENT - Javascript Problem

    it is a regular expression / is what is being used instead of quotes ^ means the beginning of the string [0-9] compares a character if it belongs to the the range 0-9 (checks for numbers) * means repeat for all characters \. means until '.' is encountered ? ignores the rest if '.' is not...
  4. dickey

    html rounded borders and IE

    check your div css put padding: 0; margin:0; in the div containing the 9x9 tables. also you can try -1px as value for padding and margin. if you can provide the link to your website or your css and / or html or even just the part that troubles you, I might be able to help.
  5. dickey

    Call to function from action attribute of form tag

    I don't know if this works but try to put action="Javascript:function()"
  6. dickey

    Quick question: session variables and functions (PHP)

    I'm not sure I understand well. But I want to ask if you used include "functions.php" in your main_file.php? and if your "functions.php" has function fn1() { return $fn_ret_1; } function fn2() { return $fn_ret_2; } if so there shouldn't be any problems. With regards to session...
  7. dickey

    Student - Use document.getElementById("").innerHTML with if else statement

    Also I believe your logic is reversed. should be (extotal > intotal)
  8. dickey

    Dreamweaver vs Notepad?

    I personally haven't use dreamweaver. But there are other tools out there to help with layout. let alone tons of free downloadable html files that are easy to change to contain your content. I also do not use notepad as it is to basic and will be prone to syntax errors. I use notepad++ as it...
  9. dickey

    TAFE Student again - currency conversion

    This is a simple task. And we would be glad to help. but in the end you stand to lose as you did not try to learn the concept behind. when you get stuck after carefully thinking of the logic of your solution, then we will help. coz I.T. is not about coding, it is more on ideas and solution...
  10. dickey

    PHP Include, file help!

    Then I guess you have to close this thread. post one more time and tick the close thread option. before posting.
  11. dickey

    Altering elements made with innerHTML

    yes. it will be added to the dom tree and you will be able to traverse it using one of the many ways.
  12. dickey

    STUDENT - Javascript Problem

    Just an advice try to make your code readable create your own set of rules like how many spaces to indent block level codes. I use 2 spaces: so basically my html template would look like this <html> <head> <title>title goes here!</title> <script type='text/scripttype'> lines...
  13. dickey

    PHP Source Code

    Don't want to be rude but what was it again that webschool want help with? If you need good answers you must ask good questions. :)
  14. dickey

    STUDENT - Javascript problem

    It's good and simple. But I think if I was his instructor I would notice that it is not his work. THis is a simple problem and he was stuck and it seems he didn't even have a code to start with.
  15. dickey

    PHP help

    when you include a file it is the same as when you made into one file.
  16. dickey

    STUDENT - Javascript problem

    This is something I come up with. If this helps I don't mind reps and credit donations. <html> <head> <script> function compute() { var input = document.getElementById('hours').value; var activity = document.getElementById('activity').value; calories =...
  17. dickey

    All read!!

    Is this for microsoft OS only? I am using Ubuntu can you make it that it supports a variety of OSes. :) What is an infraction by the way?
  18. dickey

    Why is it messed up?

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML lang="en"> <HEAD> <META content="text/html; charset=ISO-8859-1" http-equiv="content-type"> <TITLE>Welcome to Beach Park Academy</TITLE> <STYLE type="text/css"> </STYLE> <META name="GENERATOR" content="Microsoft FrontPage...
  19. dickey

    Javascript question

    <script type='text/javascript'> function picture_appear() new_image = document.createElement("img"); new_image_src = document.createAttribute("src"); new_image.setAttribute(new_image_src,"image_name.jpg"); where = document.getElementById('here')...
Top