Recent content by The Awaken

  1. T

    How do I put blog entries into my HTML website?

    This may be possible with some server-side scripting but you may have to just manually copy-and-paste the blog entries in there. To make this easier it would be useful to use a good Wysiwyg editor such as Mozilla Seamonkey, Dreamweaver, etc.
  2. T

    How do I put blog entries into my HTML website?

    This may be possible with some server-side scripting but you may have to just manually copy-and-paste the blog entries in there. To make this easier it would be useful to use a good Wysiwyg editor such as Mozilla Seamonkey, Dreamweaver, etc.
  3. T

    how to get html in front of flash?

    Use CSS absolute positioning.
  4. T

    I can't see the html code on my internet explorer! HELP!?

    That is the address bar, right click at the top and re-enable it. HTML is the source code for the web page.
  5. T

    I can't see the html code on my internet explorer! HELP!?

    That is the address bar, right click at the top and re-enable it. HTML is the source code for the web page.
  6. T

    How do you replace <these> with Perl regular expressions?

    For example: $string = "abcabc<BLOB>abcabc"; $newstring = s/....; I am trying to replace <BLOB> with any given word but am having slight issues as I am not regex-friendly...
  7. T

    Paypal IPN ASP Script HELP !?

    Sorry if this doesn't answer your question...but... Generally, when you are working with people's financial information, a little more than just "an example" is required. If you screw up, it is no stretch for the customer to sue you. Go to the resources provided by the companies you are using...
  8. T

    PHP HELP? Cannot send session cache limiter - headers already sent?

    The HTTP header is sent before you send any HTML to the client. Thus, if you have a single space in your code... anything at all before you call a function that makes use of the HTTP header (i.e. the "session" call).... it will fail, as the header has already been sent. For this, you need to...
  9. T

    What Perl/Java frameworks provide tools for CLP, and/or basic network functions?

    In Perl, and Java, I need to know how to do networking functions, as well as CLP commands (i.e. DOS or Terminal). What Java frameworks allow for this, and what Perl modules help? If there are no frameworks, what system functions may I execute with the Perl/Java functions that would allow such...
  10. T

    Why is it that javascript can make changes to the DOM, but those changes

    I know what you mean. The thing is that the JavaScript is the source. The DOM is referring to the things on screen, which are essentially programming objects that are manipulated to HTML source. If you were to change the source code dynamically, there would be no way to find out what it...
  11. T

    Plz help with php designer?

    Umm.... don't press enter? Or maybe get a better IDE? Check out these: NetBeans IDE for PHP Eclipse IDE for PHP HTML-Kit Adobe Dreamweaver
  12. T

    What are the differences between the ASP languages?

    I hear many terms related to ASP- ASP.NET ASP .NET DotNet and I think some more. I would assume .NET and DotNet are the same. I am an experience web developer with a background in PHP/JSP. What are the differences, purposes, open/closed-sourceness, and syntax styles of all the above, and any...
  13. T

    How to make an html document for a website using filezilla?

    You'll have to save it as an HTML document. Also, by the way, if you right click a file on FileZilla and select Open/Edit with, you can edit a file on your computer, and FileZilla will automatically upload it again. Here's some good software: HTML Kit NetBeans IDE Microsoft Frontpage Express...
  14. T

    transferring php variable between different servers?

    Use a hidden variable in an HTML form, or use the GET method.
  15. T

    What are the differences between the ASP languages?

    I hear many terms related to ASP- ASP.NET ASP .NET DotNet and I think some more. I would assume .NET and DotNet are the same. I am an experience web developer with a background in PHP/JSP. What are the differences, purposes, open/closed-sourceness, and syntax styles of all the above, and any...
Back
Top