Hi, Guys

It's a weird problem. When I submit a form with a string "zinc", server always return "500 server errors".

I can't figure out what's happening to that word, a simple form submit even just have one word "zinc", a server error is returned.

Is it a charset problem? I user charset "iso-8859-1". seems no problem.

But when I submit with "<i>zinc</i>", everthing seems OK.

Does anybody also encounter this problem?

Any suggestions are appreciated!

    <form method="POST" action="">
    	<input type="hidden" name="hdnAction" value="zinc" />
    	<input type="submit" name="btnSubmit" value="Submit" />
    </form>

    it seems to work ...

      a month later

      I found it maybe a charset problem, when submit a string contains like " &lt;p&gt;zinc ",

      <form method="POST" action="">
      <textarea colspan=40 rows=9> &lt;p&gt;zinc test&lt;/p&gt;</textarea>
      <input type="submit" name="btnSubmit" value="Submit" />
      </form>

      maybe server just considers this kind of string is a PHP include syntax.
      So 500 server error will return, but I notice not every server has this problem.

        Write a Reply...