我有两个文件code_generator.html。当我点击提交按钮时,它将输入作为图像URL和登陆URL,它调用code_created.php
<html>
<head>
</head>
<body>
<form action ="code_created.php" method ="post">
Image : <input type ="text" name ="image">
Landing Url : <input type ="text" name="landingurl">
<input type= "submit">
</form>
</body>
</html>
我想在网页上显示生成的代码
<div id='banner-img' style='display:none;text-align:center' onclick='landing()'><img style='text-align:center' id='bannerImage'/>
<img id='t'/>
<img id='trackeridImg' style='display:none;width:0px;height:0px'/>
</div>
<script type="text/javascript">
function showAd() {
document.getElementById('banner-img').style.display = 'block';
document.getElementById('bannerImage').setAttribute('src',IMAGE URL SUBMITTED FROM HTML FILE);
</script>
问题是网页没有显示代码生成的代码,网页正在渲染那段代码,我只想显示生成的代码。
1 - 如何使用html和php
2 - 我的方法是对的
答案 0 :(得分:1)