Search results

  1. gomarc

    .htaccess

    PHP will run from the server side but JS is to run from the user side. This means that at one point, the js code needs to go to the user. Maybe you can find some answers at these posts: http://codingforums.com/showthread.php?t=9442 http://www.webmasterworld.com/forum91/576.htm
  2. gomarc

    Need Help a Warning

    Yes, as xPlozion said, that message means that something was sent to the browser before your line 2. The headers must be sent before anything else is sent to the browser. Maybe we can help if you post your first 2 lines of code.
  3. gomarc

    Passing a value from a select input field using php

    A great place to learn PHP is w3schools.com It's full of good tutorials.
  4. gomarc

    Suspended

    If you could not un-suspend yourself, it’s best if you create a ticket at http://support.x10hosting.com/ Remember that this is not official support anymore, so probably there is not much other members just like you and me can do for you here. So go ahead and get your ticket! Good luck!
  5. gomarc

    [30 Creds] Quickest 30 credits you'll ever make, just register on my forum

    Credits received. Thank you! I added your first positive feedback on iTrader.
  6. gomarc

    User input posted

    You can start learning how to do this here http://www.w3schools.com/php/php_post.asp It’s a great tutorial site.
  7. gomarc

    Game: Team A Vs. Team B

    985 + 5 = 990
  8. gomarc

    [100 Credits] Hot OFFER! Register my site & 2 Posts

    Credits received. Thank you!
  9. gomarc

    [100 Credits] Hot OFFER! Register my site & 2 Posts

    Registration & 2 posts done.
  10. gomarc

    Suspended

    You may need to check http://forums.x10hosting.com/free-hosting/announcements.html
  11. gomarc

    Backups?

    For all of those missing the “Backups” and the “Backup Wizard” in their CPanel: You may try to request it be added via official Support Ticket http://support.x10hosting.com/ Apparently this omission is not something new ( see this old thread...
  12. gomarc

    php date comparisons

    <?php $today = date("l"); // l (lowercase 'L') echo 'Day of the week: ' . $today ."\n <br />"; switch ($today) { case Saturday: echo "Today is Saturday"; $image = "Saturday value"; break; case Sunday: echo "Today is Sunday"; $image = "Sunday value"; break; default: echo "Today...
  13. gomarc

    Backups?

    Nope, it’s a current screenshot. My server is Cossacks.
  14. gomarc

    Backups?

    Yes, go to your CPanel. Under the “Files” category select Backups or the Backup Wizard. It’s very easy!
  15. gomarc

    Lotus Up/Down?

    To quickly check the status of the servers you can go here: http://forums.x10hosting.com/free-hosting/13706-x10hosting-services-up-down.html#post83349 You can also get free monitoring of your site at mon.itor.us, http://www.siteuptime.com/ , http://host-tracker.com/ and others.
  16. gomarc

    Does x10hosting free hosting service support .htaccess?

    Yes, they do support .htaccess. You can make changes to it as any other text file
  17. gomarc

    Is the forum pop advertisement gone?

    It seems that the annoying pop advertisement over some keywords is gone. We all eventually learned to maneuver around them by not placing our mouse over the posted text... ever! But now, that’s part of the past. Our surfing experience will now be much more “relaxed” Thank you X10!
  18. gomarc

    PHP/MySQL Programming

    Thank you driveflexfuel. Added to your reputation. I guess this thread should be closed.
  19. gomarc

    PHP/MySQL Programming

    If I understood correctly, you already have an image map where users can click on the state. <?php /* File name: by_state.php Expecting something like : by_state.php?state=california Note that 'california' is not the same as 'ca' but california will match CaliFORnia. Your MySql table must...
Top