Recent content by techno_hacker_d600

  1. T

    PHP-Script for a web-based Notepad?

    In its simplest form: -----Index.html----- <html> <html> <script type="text/javascript"> function getObj(){ if(window.XMLHttpRequest) return new XMLHttpRequest(); else if(window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP"); else return null; } function init(){ var xhr =...
  2. T

    PHP-Script for a web-based Notepad?

    In its simplest form: -----Index.html----- <html> <html> <script type="text/javascript"> function getObj(){ if(window.XMLHttpRequest) return new XMLHttpRequest(); else if(window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP"); else return null; } function init(){ var xhr =...
  3. T

    Is it true that PHP is not a good first language to learn?

    PHP is an excellent language with which to start. The same thing applies to Javascript. They follow basically the same syntax as C/C++, which is today's industry standard. Any C/C++ book will tell you to start with Javascript and/or PHP to learn the syntax of the language more easily. They...
  4. T

    how do I make this PHP code work properly (previous q deleted)?

    $error needs to be declared globally, outside the 'if' statements. Each time, you are declaring $error inside the 'if' statements and each time the 'if' statement ends, the $error variable goes out of scope and deleted.
  5. T

    I need some PHP help!?

    To be able to help you, we need the code to review. Please post the source code.
  6. T

    Making messagebox in html?

    <html> <head> </head> <body onunload="alert('You are leaving this page!');"> </body> </html>
  7. T

    Scripting question?? Perhaps php?

    If you are not the forum owner, you can't do php. Use javascript. Also, if the forum does not allow javascript in there forum, you can't do that either.
  8. T

    HTML/CSS/JavaScript Help Please?

    Add to encryption page: document.location = "myurl.com/viewable.html?pw=" + password; Add to viewable page: str = document.location; str = str.split("?")[1]; str = str.split("=")[1']; if(str = password) { go in } btw, javascript is not very safe. Use php wherever possible.
  9. T

    PHP Search a data base and display results?

    Go to w3schools.com for php tutorials. This should teach you what you need.
Back
Top