我编写了一个小代码,它创建了一个word文档,但是我得到了以下错误
require_once‘./include/bootstrap.inc’;drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);全局$user;
$fp = fopen("test.doc", 'w+');
$str = "<B>This is the text for the word file created through php programming</B><br>test to create a doc file
嘿,我有大约10个不同标题的php页面,代码如下:
< title >some title here< /title>
我使用jquery的$('title').html('new title')动态更改标题,但这会更改所有php页面的标题。有没有办法指定我想要更改其标题的页面。我对这10个页面使用了一个.js脚本,所以任何引用文档的代码都会影响这10个php页面。我只想影响thisone.php
谢谢。
我需要将内容表中的5个标题打印到两个html <div>中。首先,我使用LIMIT 2使用php循环打印了2个标题。
$SQL = Access::FETCH("SELECT * FROM " . CONTENT . " WHERE active = ?, ORDER BY name LIMIT 2", 'YES');
foreach($SQL AS $row){
?>
<div class="levelOne"><?PHP echo $row['title'