Recent content by Silent

  1. S

    PHP, pause script until form is submitted?

    I don't think you fully understand how PHP works or what it's for. This code isn't running in your browser. It can't be "paused" while you're interacting with the page, because by the time you see the page it's already finished. A PHP script runs on the web server. It generates an HTML...
  2. S

    How to connect PhpMy Admin to website using PHP codes?

    PHPMyAdmin is not a database. It's a PHP web application used to administer a MySQL database. If you want to install a web server with PHP and MySQL, the easiest thing to do is probably install XAMPP, a free package that installs everything together for you. See the link below. If that's not...
  3. S

    Html link returns to where you were on page?

    Learn how to use cookies. Update it with scroll position whenever you click a link on the index page, and check whether there is a cookie set whenever the index page loads. There are some different properties to determine your scroll position, like window.pageYOffset and...
  4. S

    Way to convert files from html to mpeg/avi?!?

    No, you don't. HTML is a format for specifying the structure of documents. It is not a video format. Your video may be linked to in an HTML document, but it is not "in HTML" itself. If you can figure out what format the video really is in — or post the link here so we can figure it out for you...
  5. S

    Way to convert files from html to mpeg/avi?!?

    No, you don't. HTML is a format for specifying the structure of documents. It is not a video format. Your video may be linked to in an HTML document, but it is not "in HTML" itself. If you can figure out what format the video really is in — or post the link here so we can figure it out for you...
  6. S

    Way to convert files from html to mpeg/avi?!?

    No, you don't. HTML is a format for specifying the structure of documents. It is not a video format. Your video may be linked to in an HTML document, but it is not "in HTML" itself. If you can figure out what format the video really is in — or post the link here so we can figure it out for you...
  7. S

    Way to convert files from html to mpeg/avi?!?

    No, you don't. HTML is a format for specifying the structure of documents. It is not a video format. Your video may be linked to in an HTML document, but it is not "in HTML" itself. If you can figure out what format the video really is in — or post the link here so we can figure it out for you...
  8. S

    Way to convert files from html to mpeg/avi?!?

    No, you don't. HTML is a format for specifying the structure of documents. It is not a video format. Your video may be linked to in an HTML document, but it is not "in HTML" itself. If you can figure out what format the video really is in — or post the link here so we can figure it out for you...
Back
Top