Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The only method that comes to mind is a possibly a iframe ?</p> <p>You can generate the links / anchor via php as the contents for the frames and then have it re-generate on a change / navigation.</p> <p>Otherwise for what reason do you wish not to use AJAX? </p> <p><strong>ALSO ...</strong></p> <p>You can have a hidden iframe and grab the contents of that on the onload event and set it to a tables cell content and generate/insert a new row/cell and so on.. Using the iframe as your grabber via anchor links.. Be sure to add something like a nocache variable to keep the content fresh.</p> <p><strong>HTML PAGE CONTENTS index.html</strong></p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;iFrame Test&lt;/title&gt; &lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;iframe name='objGrab' id='objGrabber' style='position:absolute; left:-99999px; top:-99999px;'&gt;&lt;/iframe&gt; &lt;a target="objGrab" href="prc.php?page=1"&gt;Page 1&lt;/a&gt;&lt;br /&gt; &lt;a target="objGrab" href="prc.php?page=2"&gt;Page 2&lt;/a&gt; &lt;div id='pageContent'&gt;&lt;/div&gt; &lt;script&gt; $(function() { $("#objGrabber").load(function (){ $("#pageContent").html($(this).contents().find('body').html()); }); }); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p><strong>PHP PAGE CONTENTS - prc.php</strong></p> <pre><code>&lt;?php switch($_GET['page']) { case "1": echo "Contents for page one"; break; case "2": echo "Contents for page two "; break; } ?&gt; </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.
    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