runnerjp Posted April 3, 2009 Share Posted April 3, 2009 im using tabs to display different types of inforamtion on a profile page.... <div align="center" class="style5"> <p class="style9"><u>Welcome to Admins profile</u></p> <p class="style9"> </p> </div> <ul id="countrytabs" class="shadetabs"> <li><a href="#" rel="#default" class="selected">About me</a></li> <li><a href="include/profiletab/showgoals.php" rel="countrycontainer">Goals</a></li> <li><a href="include/profiletab/external3.htm" rel="countrycontainer">Idols</a></li> <li><a href="include/profiletab/external4.htm" rel="#iframe">Thanks to</a> </li> </ul> <div id="countrydivcontainer" style="border:1px solid gray; width:800px; margin-bottom: 1em; padding: 10px"> <?php echo $getuserprofile['about_me']?></div> <script type="text/javascript"> var countries=new ddajaxtabs("countrytabs", "countrydivcontainer") countries.setpersist(true) countries.setselectedClassTarget("link") //"link" or "linkparent" countries.init() </script> the thing is when i click on one of the tabs such as <li><a href="include/profiletab/showgoals.php" rel="countrycontainer">Goals</a></li>, then the php on the page wont work <?php session_start(); require_once '../../../settings.php'; include "../../../info.php"; // sets username/id ect $go= $_GET['username']; echo $go; $getuser = mysql_fetch_assoc(mysql_query("SELECT * from users where Username='$profilename'")); $getuserprofile = mysql_fetch_assoc(mysql_query("SELECT * from profile where ID='".$getuser['ID']."'")); echo $getuserprofile['mygoals']; ?> the reason for this seams to be the fact that $_GET['username']; does not grab the username in the url... how can i carry the url to one of the linked pages so that i can get information in the tabs dependent on the users profile page? Link to comment https://forums.phpfreaks.com/topic/152360-solved-tabs-and-php/ Share on other sites More sharing options...
Mark Baker Posted April 3, 2009 Share Posted April 3, 2009 the reason for this seams to be the fact that $_GET['username']; does not grab the username in the url... how can i carry the url to one of the linked pages so that i can get information in the tabs dependent on the users profile page? <a href="include/profiletab/showgoals.php" rel="countrycontainer"> doesn't have a username in the URL to get Link to comment https://forums.phpfreaks.com/topic/152360-solved-tabs-and-php/#findComment-800195 Share on other sites More sharing options...
runnerjp Posted April 3, 2009 Author Share Posted April 3, 2009 i was thinging it would get it from the initial page its on but obviusly not lol thanks Link to comment https://forums.phpfreaks.com/topic/152360-solved-tabs-and-php/#findComment-800202 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.