Search results

  1. gomarc

    Help Needed!

    Thank you, I appreciate that.
  2. gomarc

    Help Needed!

    My offer still stands cgrim29588.
  3. gomarc

    Php

    Most of us do, even if we are not aware of it.
  4. gomarc

    Help Needed!

    You are right garrettroyce! I completely forgot about this feature. That is the easiest way to go.
  5. gomarc

    Help Needed!

    Well, it’s really not that hard and almost sure you will need the FTP program to move the files to your new host. Free accounts used to have a one click backup option, but it’s currently not enabled.
  6. gomarc

    Help Needed!

    Use a FTP program like FileZilla http://www.filehippo.com/download_filezilla/ to save all your files in your public_html folder to your local computer and then you can transfer them back to the new host. Your databases can be exported from your CPanel > Databases > phpMyAdmin. Sorry to hear...
  7. gomarc

    Javascript problem

    I hope this code works for you as it did for me. I lost track of the small changes made to your code so I’m posting all again. The 3 files are to be placed in the same directory. <html> <head> <script type="text/javascript" src="validator.js"></script> </head> <form method="post"...
  8. gomarc

    Javascript problem

    If you have your script in the same directory as your html, then it should be just “validator.js” <script type="text/javascript" src='validator.js'></script>
  9. gomarc

    Time until site is live

    Yes, it may take some time but it’s working now.
  10. gomarc

    mysql questions?

    No, for security reasons external access to mysql databases is not supported. For your MySQL version as well as other important configurations, check the left column of your CPanel.
  11. gomarc

    HTML Tutorial

    You can get started here: http://www.w3schools.com/html/DEFAULT.asp Do not skip the forums rules! Link > http://forums.x10hosting.com/tutorials/61749-please-read-these-rules.html#post354555 Good luck!
  12. gomarc

    A Computer Program to solve a mans problem.

    Made me laugh too! :laugh: I’ll give him rep+
  13. gomarc

    What is the "address" of my files that I posted to my public_html directory?

    try <img src='images/phto0611_brkfld_zoo_nsn_at_park.jpg' WIDTH="40%"HEIGHT="40%"ALT="Zoo_Photo">
  14. gomarc

    scripting help

    If you want to do it using some php, you can try this: <form name="input" action="gopage.php" method="post"> <input type="radio" checked="checked" name="webpage" value="http://www.w3schools.com/" /> w3schools <br /> <input type="radio" name="webpage"...
  15. gomarc

    A simple question

    Don’t give up nexus-se! There is a chance you may have your website done in Portuguese as long as you have a direct translation of the website in English. Not that long ago, someone ask the same question. Check this link...
  16. gomarc

    PHP problem - if / else

    You are missing an opening bracket { after the if(): <?php if ($exhibitions == 'yes') {?> checked="checked" />
  17. gomarc

    query help

    Correct! mysql_numrows() is a deprecated alias of mysql_num_rows() source: http://us2.php.net/manual/en/function.mysql-num-rows.php So you are better off using mysql_num_rows()
  18. gomarc

    MySQL - is there an easy way to...

    Have you tried CPanel > Databases > phpMyAdmin ?
  19. gomarc

    Problem using php header() function

    Yes, it does make a difference! You can embed php within html tags, but the header() statement must go before any output, in this case <head><title></title></head>.
  20. gomarc

    Problem using php header() function

    The problem may be with success.htm. Your code as posted works fine. If success.htm = <html> <body> SUCCESS! </body> </html> ... it will work.
Top