我在wordpress中编写了一个php页面,它应该从数据库中获取一些信息并显示到页面上。我正在尝试添加直接从页面更新信息的功能,似乎有什么东西正在剥离我的第一个表单标记,但其他的没有。有没有人见过这样的事情,或者知道可能发生的事情?
这里是PHP
function display_terms_by_brand()
{
global $wpdb;
$sql = "SELECT * FROM ".NINJA_FORMS_TERMS_TEXT;
$terms = $wpdb->get_results($sql, ARRAY_A);
?>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.edit').click(function(){
jQuery(this).parent().find('.edit').css('display' , 'none')
jQuery(this).parent().find('.save').css('display' , 'block')
jQuery(this).parent().siblings('span[id*=brand_text_]').children('span').toggle();
jQuery(this).parent().siblings('span[id*=brand_text_]').children('textarea').toggle();
});
})
</script>
<div id="termsHeader" style="font-weight:bold; font-size:16px; padding:10px 0; height:30px; min-width:600px;">
<span style="width:10%; text-align:center; float:left; padding:0 30px;">Brand</span>
<span style="width:67%; text-align:center; float:left;">Text</span>
<span style="width:9%; text-align:center; float:right; padding:0 15px;">Edit / Save</span>
</div>
<div style="clear:both;"><!-- --></div>
<hr />
<?php
foreach($terms as $curr_term) {
?>
<div style="width:100%; padding:20px 0; min-width:600px;" class="term">
<span style="width:10%; height:50px; padding:30px; float:left; text-align:center;" id="brand_name_<?php echo $curr_term['text_id'] ?>">
<?php echo $curr_term['brand_name'] ?>
</span>
<span style="width:67%; height:50px; padding:30px 10px; float:left;" id="brand_text_<?php echo $curr_term['text_id'] ?>">
<span> <?php echo stripslashes($curr_term['brand_text']) ?> </span>
<textarea style="display:none; width:100%;"><?php echo stripslashes($curr_term['brand_text']) ?></textarea>
</span>
<span style="width:12%; height:50px; padding:30px 10px; float:right;">
<form action="/wp-admin/admin.php?page=ninja-forms-extend" method="post" name="edit_<?php echo $curr_term['text_id'] ?>" id="edit_<?php echo $curr_term['text_id'] ?>">
<input name="brand_name" type="hidden" value="<?php echo $curr_term['brand_name'] ?>" />
<textarea name="brand_text" style="display:none;">TEST</textarea>
<input class="termsEditButton termsButtons edit" style="width:150px; margin:0 auto; display:block;" name="edit" type="button" value="Edit Optin Statement" />
<input class="termsSaveButton termsButtons save" style="width:150px; margin:0 auto; display:none;" name="save" type="button" value="Save Optin Statement" />
<input class="termsDeleteButton termsButtons delete" style="width:150px; margin:0 auto; display:block;" name="delete" type="button" value="Delete Optin Statement" />
</form>
</span>
</div>
<div style="clear:both;"><!-- --></div>
<?php
}
?>
<hr />
<h2>Add New Terms text</h2>
<form action="<?php echo $_SERVER['PHP_SELF'] ?>?page=ninja-forms-extend" method="post" name="add_new_term_text" id="add_new_term_text">
<label style="float:left;width:50px;clear:left;font-weight:bold">Brand</label><input name="brand_name" type="text" size="38" /> (This will be the shortcode to display the text)<br />
<label style="float:left;width:50px;clear:left;font-weight:bold">Text</label><textarea name="brand_text" cols="35" rows="5"></textarea><br />
<input name="submit" type="submit" value="Add New Terms Text" />
</form>
<?php
return;
}
第一次通过循环得到的html如下:
<div style="width:100%; padding:20px 0; min-width:600px;" class="term">
<span style="width:10%; height:50px; padding:30px; float:left; text-align:center;" id="brand_name_1">
caprizehouse </span>
<span style="width:67%; height:50px; padding:30px 10px; float:left;" id="brand_text_1">
<span> I certify that I am a resident of Canada over the age of 18, I agree to the <a href="http://coreg.intela.com/media/ca-prizehouse/privacypolicy.htm" class="fancylink" target="_blank">Privacy Policy</a> and <a href="http://coreg.intela.com/media/ca-prizehouse/terms.htm" class="fancylink" target="_blank">Terms and Conditions</a>, and I would like to receive the Canadian Prize House newsletter. </span>
<textarea style="display:none; width:100%;">I certify that I am a resident of Canada over the age of 18, I agree to the <a href="http://coreg.intela.com/media/ca-prizehouse/privacypolicy.htm" class="fancylink" target="_blank">Privacy Policy</a> and <a href="http://coreg.intela.com/media/ca-prizehouse/terms.htm" class="fancylink" target = "_blank">Terms and Conditions</a>, and I would like to receive the Canadian Prize House newsletter.</textarea>
</span>
<span style="width:12%; height:50px; padding:30px 10px; float:right;">
<input name="brand_name" type="hidden" value="caprizehouse">
<textarea name="brand_text" style="display:none;">TEST</textarea>
<input class="termsEditButton termsButtons edit" style="width:150px; margin:0 auto; display:block;" name="edit" type="button" value="Edit Optin Statement">
<input class="termsSaveButton termsButtons save" style="width:150px; margin:0 auto; display:none;" name="save" type="button" value="Save Optin Statement">
<input class="termsDeleteButton termsButtons delete" style="width:150px; margin:0 auto; display:block;" name="delete" type="button" value="Delete Optin Statement">
</span>
</div>
注意表单标记是如何丢失的。通过循环的另外两次传递,这是到页面的HTML输出:
<div style="width:100%; padding:20px 0; min-width:600px;" class="term">
<span style="width:10%; height:50px; padding:30px; float:left; text-align:center;" id="brand_name_2">
canadianprizes </span>
<span style="width:67%; height:50px; padding:30px 10px; float:left;" id="brand_text_2">
<span> I certify that I am a Canadian resident above the age of 18 years and I agree to and accept the <a target="_blank" class="fancylink" href="http://www.canadianprizes.com/media/canadianprizes/terms.jspx"> Terms and Conditions</a>, <a target="_blank" class="fancylink" href="http://www.canadianprizes.com/media/canadianprizes/privacy.jspx">Privacy Policy</a> and <a target="_blank" class="fancylink" href="http://www.canadianprizes.com/media/canadianprizes/prizepolicy.jspx">Competition Rules</a>. I consent to my personal details being provided to selected clients, sponsors and affiliates and to being contacted via email, phone, SMS or mail, as described in the Privacy Policy. </span>
<textarea style="display:none; width:100%;">I certify that I am a Canadian resident above the age of 18 years and I agree to and accept the <a target="_blank" class="fancylink" href="http://www.canadianprizes.com/media/canadianprizes/terms.jspx"> Terms and Conditions</a>, <a target="_blank" class="fancylink" href="http://www.canadianprizes.com/media/canadianprizes/privacy.jspx">Privacy Policy</a> and <a target="_blank" class="fancylink" href="http://www.canadianprizes.com/media/canadianprizes/prizepolicy.jspx">Competition Rules</a>. I consent to my personal details being provided to selected clients, sponsors and affiliates and to being contacted via email, phone, SMS or mail, as described in the Privacy Policy.</textarea>
</span>
<span style="width:12%; height:50px; padding:30px 10px; float:right;">
<form action="/wp-admin/admin.php?page=ninja-forms-extend" method="post" name="edit_2" id="edit_2">
<input name="brand_name" type="hidden" value="canadianprizes">
<textarea name="brand_text" style="display:none;">TEST</textarea>
<input class="termsEditButton termsButtons edit" style="width:150px; margin:0 auto; display:block;" name="edit" type="button" value="Edit Optin Statement">
<input class="termsSaveButton termsButtons save" style="width:150px; margin:0 auto; display:none;" name="save" type="button" value="Save Optin Statement">
<input class="termsDeleteButton termsButtons delete" style="width:150px; margin:0 auto; display:block;" name="delete" type="button" value="Delete Optin Statement">
</form>
</span>
</div>
在那里,您将注意到表单标记已正确应用。
我也有同样的问题。原来我完全忽略了一个事实,那就是我在主要期权表格中加入了表格。
我已经使用file_get_html脚本。我现在把它转移到一个Wordpress网站,它似乎不工作。 只是尝试在管理插件中使用它。 下面的片段: 经过一段时间已经开始:结果:"我在这里!!!" 第一个foreach之后:Results:Nothing 后$html=file_get_html($url);:结果:什么都没有,甚至不显示"结果" 错误消息: 致命错误:未捕获错误:调用 /home/x
问题内容: 我有这个HTML输入: 我想使用正则表达式删除HTML标记,以便输出为: 谁能建议使用正则表达式执行此操作? 问题答案: 您可以使用称为Jericho Html解析器的HTML解析器。 您可以从这里下载-http://jericho.htmlparser.net/docs/index.html Jericho HTML Parser是一个Java库,允许对HTML文档的各个部分(包括服
我对WordPress有意见。该网站工作相当正常,但在管理面板上,各种页面,如编辑帖子,安装插件,添加新插件,添加新页面,设置重定向到主页我。我疯狂地在谷歌上搜索了3天,但我刚刚发现了mod_安全问题。结果对我来说也没用。 这是我的.htaccess文件
问题内容: 是否存在现有的Java库,该库提供了一种从字符串中剥离所有HTML标记的方法?我正在寻找与PHP中的功能等效的东西。 我知道我可以使用这个问题中描述的正则表达式,但是我很好奇,是否可能已经有一种方法可以在Apache Commons库中的某个地方使用。 问题答案: 在开放了将近一个星期的问题之后,我可以肯定地说,Java API或Apache库中没有可用的方法可从字符串中剥离HTML标
问题内容: 我需要用ajax调用产生的html替换页面中div的内容。问题是html中包含一些必要的脚本,并且jquery html()函数似乎将它们剥离了,我需要过滤响应并仅获取特定的div。 我正在考虑一种解决方法,该方法是从ajax响应中提取所有脚本标签,然后将其附加到DOM中,但是这样做很麻烦。 这是我的代码; 但这是任何结论。我尝试了那里提出的解决方案,但没有一个起作用。 编辑:我似乎找
当我尝试登录wordpress页面时,出现以下错误: [function.assert]:断言失败在 /home/osisonli/public_html/version.php在第1行斩波连接警告:include_once(rc-模板/-row-templates.php)[function.include]:未能打开流:没有在第118行 /home/osisonli/public_html/w