表和JSON数据的问题

时间:2016-12-09 14:27:41

标签: php html json api

我从显示网站模板的API获取数据。 然后,用户可以继续并使用这些模板创建网站。

我标题的一部分是使用两个表,使用两个不同的文件; microheader.html和header.html

我将这些调用到我的php文件中,如下所示

<html>
<head>

<title>Website Builder</title>
<link rel="stylesheet" type="text/css" href="css.css">

</head>
<body>
<?php 

        $header = fopen("header.html", "r") or die("Unable to open file!");
        echo fread($header,filesize("header.html"));
        fclose($header);


        $microheader = fopen("microheader.html", "r") or die("Unable to open file!");
        echo fread($microheader,filesize("microheader.html"));
        fclose($microheader);


    $contents = file_get_contents('content.html'); 
    echo $contents;
    require('templates.php');
?>
</body>
</html>

我有没有办法直接展示一张桌子?

表格没有任何问题。标题组成表格。 当我在那里显示每个表时,即显示一个表并进行测试,删除,显示另一个表,测试,没关系。但是使用表格然后直接使用表格导致将数据发送到我正在使用的网站构建器API时出现问题。我的表格可以在下面找到

第一个表是:

<table class="micronav">
    <tr>
        <td>
            <p class="micronavp">Low Cost Business Websites, PPC &amp; SEO</p>
        </td>
    </tr>
</table>

第二个表是

<table class="topnav">
    <tr>

        <td>
         <img alt ="" class="headerimg" src="https://www..co.uk/wp-content/uploads/2016/10/-2.png">
        </td>

        <td>
            <ul>
                <li><a href="https://www..co.uk/contact-us/">CONTACT</a></li>
                <li><a href="https://www..co.uk/my-account/">MY ACCOUNT</a></li>
                <li><a href="https://www..co.uk/portfolio-item/">BLOG</a></li>
                <li><a href="https://www..co.uk/digital-marketing-business-opportunities/">BUSINESS OPPORTUNITIES</a></li>
                <li class="dropdown">
                        <a href="#" class="dropbtn">LEAD GENERATION</a>
                        <div class="dropdown-content">
                              <a href="https://www..co.uk/product-category/small-business-seo/">Small Business SEO</a>
                              <a href="https://www..co.uk/product-category/pay-per-click-small-businesses/">Pay Per Click</a>
                              <a href="https://www..co.uk/product-category/email-marketing/">Email Marketing</a>
                              <a href="https://www..co.uk/product-category/b2b-mailing-lists/">B2B Mailing Lists</a>
                              <a href="https://www..co.uk/product-category/sms-marketing/">SMS Marketing</a>
                        </div>
                </li>       
                <li class="dropdown">
                        <a href="#" class="dropbtn">SMALL BUSINESS WEBSITES</a>
                            <div class="dropdown-content">
                              <a href="#">Do It Yourself</a>
                              <a href="https://www..co.uk/small-business-websites/">Website Design Services</a>

                            </div>
                </li>        
                <li><a href="https://.co.uk/">HOME</a></li>
                <li></li>   
            </ul>
        </td>
    </tr>
</table>

templates.php文件获取JSON数据并显示它,工作正常。

我的表格有问题吗?有没有办法发布包含我的JSON api数据的私信?

提前致谢

当我拿出其中一个表时,它可以工作,并将用户带到一个外部网站构建器,其中包含了Url获取参数但是当我在文件打开php中彼此之后直接使用两个单独的html文件中的两个表时它不起作用将用户带到 https:///DOMAIN.co.uk/websites/choose-your-website.php?template_id=1003040&email=test%40test.co.uk

任何帮助非常感谢

0 个答案:

没有答案