I have a form I want to sent to the google api to create a chart:
<form action='https://chart.googleapis.com/chart' method='POST'>
<input type="hidden" name="cht" value="lc" />
<input type="hidden" name="chtt" value="Yeast Density" />
<input type='hidden' name='chs' value='300x200' />
<input type="hidden" name="chxt" value="x,y" />
<input type="hidden" name="chxl" value="0:|0|1|5|10|15|20|25|" />
<input name='chd' value='t:0,2,20,10,0'/>
<input type="submit" />
</form>
Each time I click submit I get an error 404 message.
Strangely the same site works outside WordPress( http://bieresomnifiere.iblogger.org/yeast.html ), I also checked the list of reserved words within wordpress, but non of these appears to be conflicting with my variables. Does anyone have an idea what causes the problem?
Thanks!