Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to generate HTML files depends on array length php
    primarykey
    data
    text
    <p>How to generate HTML files depends on array length php</p> <p>I have an XML file. </p> <pre><code>&lt;books&gt; &lt;book x="1" y="2"&gt; &lt;name x="5" y="12"&gt;Java&lt;/name&gt; &lt;author x="8" y="16"&gt;Rao&lt;/author&gt; &lt;/book&gt; &lt;book x="12" y="20"&gt; &lt;name x="5" y="12"&gt;Php&lt;/name&gt; &lt;author x="5" y="12"&gt;Naidu&lt;/author&gt; &lt;/book&gt; &lt;book x="19" y="29"&gt; &lt;name x="25" y="22"&gt;Xml&lt;/name&gt; &lt;author x="25" y="12"&gt;Gowda&lt;/author&gt; &lt;/book&gt; &lt;/books&gt; </code></pre> <p>I have converted it into array using php.</p> <p>I have standard html files i.e template. </p> <pre><code>&lt;body&gt; &lt;div id="books" style="float:right; position:absolute; left: 199px; top: 245px;"&gt; &lt;div id="book" style="float:right; position:absolute; left: 199px; top: 245px;"&gt; &lt;div id="name" style="float:right; position:absolute; left: 199px; top: 245px;"&gt;&lt;/div&gt; &lt;div id="author" style="float:right; position:absolute; left: 199px; top: 245px;"&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p>Based on the array legth, I need to generate those many html files with dynamic values inside the div which are present in array . Here i need to generate 3 html files (because i have 3 book elements).How can i generate the html files by using array. </p> <p>array is look like this:</p> <pre><code>Array ( [book] =&gt; Array ( [0] =&gt; Array ( [name] =&gt; Java [author] =&gt; Rao [@attributes] =&gt; Array ( [x] =&gt; 1 [y] =&gt; 2 ) ) [1] =&gt; Array ( [name] =&gt; Php [author] =&gt; Naidu [@attributes] =&gt; Array ( [x] =&gt; 12 [y] =&gt; 20 ) ) [2] =&gt; Array ( [name] =&gt; Xml [author] =&gt; Gowda [@attributes] =&gt; Array ( [x] =&gt; 19 [y] =&gt; 29 ) ) ) ) </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload