I want to pass this topic parameter to another page,
ps page load using jquery?
URL:
http://localhost/final/home.php
Now, I want to repeat the topic on page # page2
<h3 class="timeline"><?php echo $_GET["topic"]; ?> </h3>
but this is deosnt echo, any solutions, sorry for new questions :))
load_page.php
<?php if(!$_POST['page']) die("0"); $page = (int)$_POST['page']; if(file_exists('pages/page_'.$page.'.php')) include('pages/page_'.$page.'.php');
source share