Search results

  1. E

    Stopwatch code for website

    You can't expect people to make it for you. Either pay someone to make it. Or learn Javascript and make it yourself ;)
  2. E

    Warning: Cannot modify header information - headers already sent

    you can only use header(); or session_start(); before anything is outputted to the webbrowser. such as HTML. Post your code if your still in doubt.
  3. E

    Problem JavaScript

    what exactly is your problem though? is it simply not loading? or nothing happens when pressing your buttons?
  4. E

    Stopwatch code for website

    google javascript stop watch. there are plenty of free scripts available. And its up to you to position it where you want ;) good luck
  5. E

    how about image hyperlink using css

    <a href="http://forums.x10hosting.com/programming-help/page.html"><img src="http://forums.x10hosting.com/programming-help/image.jpg"></img></a>
  6. E

    Connecting to MySQL in x10Hosting

    host is definantly localhost
  7. E

    Connecting to MySQL in x10Hosting

    <?php /* Connect to Database */ $link = mysql_connect( "localhost", "username", "password" ); if ( ! $link ) { die( "Couldn't connect to MySQL: ".mysql_error() ); } mysql_select_db( "database_name", $link ) or die ( "Couldn't connect to database: ".mysql_error() ); ?>Note that with your...
Top