Search results

  1. N

    My Markup Validator

    Hi! I would like to tell you about my first web tool. It's not really a markup validator, like the title says. It's just a PHP script that sends an HTTP request to the W3C Markup Validator and then outputs what it says about a given URI (as a PNG image). Here are some examples of using the...
  2. N

    fsockopen("www.example.com/BLAH")

    Is there any way to open a different directory using fsockopen? Opening "www.example.com" works fine, but I want a different directory. Is there any way to do this? I know that opening "www.example.com/blah" doesn't work. Edit: I figured it out. I went to w3.org and read almost the entire...
  3. N

    Any substitute of cURL?

    I'm trying to make a web api that sends requests to other domains, but since AJAX can't do this alone, I found a PHP script using cURL that could: <?php $url = $_GET["url"]; $session = curl_init($url); curl_setopt($session, CURLOPT_HEADER, false); curl_setopt($session...
  4. N

    What's your web design environment?

    What languages/platforms do you use? (Everything from javascript to flash) What Editors/IDEs do you use? (from notepad to netbeans) And, why? I use HTML, CSS, PHP, minor Javascript (maybe an "onclick()" here and there), GD, AJAX, and Java. I find PHP easier to use and more suitable for me...
  5. N

    <object type="text/html"> finding value of <param>'s

    Say I have the following code in index.html: <object type="text/html" data="example"> <param name="first" value="andrew" /> </object> (example could be any HTML file such as .PHP, .HTML, .CGI, etc.) How can I get the param name's value within the file example? Whether it's using...
  6. N

    Changing Hosting Type

    Sorry. I've now noticed the upgrade/downgrade/change hosting forum.
  7. N

    cgi-bin 404 error

    I've seen many other posts like this, and in all of them Corey fixed it manually somehow. Well, I have the same problem. Here's a link to a cgi script that came with my account: http://www.nonsensep.x10hosting.com/cgi-bin/randhtml.cgi The file is permission 755, as well as the cgi-bin...
Top