$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>html - Using an iframe for a form help|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

html - Using an iframe for a form help

matteradmin8PV0评论

I need to add an html form to my homepage so I have added an iframe using raw html. Everything works correctly on the desktop but when I try to use it on mobile it gets messed up. Instead of our mobile website being loaded completely, it just gets loaded into the iframe. I am not sure why that happens.

Is there anything to add that can stop this from happening or another way to add the form code in? I have tried just adding the form code in without the iframe but the html code messes up the other aspects of the page (such as drop downs and buttons).

I can not use a form builder plugin since the form has to be submitted into our system and not sent to an email address.

Looking for any help you can provide! Thank you!

Here is the code:

<iframe style="background: #FFFFFF;" src="formname.html" name="cent-form"
width="400px" height="500px" align="right" frameborder="0" marginwidth="5px"
marginheight="5px" scrolling="no" allowfullscreen="allowfullscreen"></iframe>

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far