From: Terrie B. <te...@ap...> - 2002-02-15 20:37:12
|
Hi James, Actually that was one of the first things we tried, but it still wasn't working. But we figured out why: the handler.php was looking for a value in $HTTP_POST_VARS('submit'). For using an image for the submit button, we needed to change this to submit_x (as it appears to store the x and y coordinates). So we now have this working. Terrie On 2/15/02 11:40 AM, "James E. Flemer" <jf...@ac...> wrote: > On Thu, 14 Feb 2002, Terrie Beloin wrote: > >> I am trying to create a survey in Japanese which has worked fine; however, I >> need to have the submit button located in /public/handler.php to also be in >> Japanese. I have created a jpeg that has the correct 'submit' text but when >> I try to change the html tags to either >> >> <input type="image" src="images/submit.jpg"> > > Try: > <input type="image" name="submit" src="images/submit.jpg"> > > Or you could make a copy of the handler.php and use one > copy for english and one copy for Japanese. Just change the > text in the Japanese one. > -James > |