hansman Posted August 6, 2008 Share Posted August 6, 2008 Hello, I have my mysql data base with a user profile with name, description etc in it. On the profile page i want to display the persons name, then have a link fro description etc. How would i go upon putting this in so it will be able to be used across the site? Quote Link to comment https://forums.phpfreaks.com/topic/118436-pagination-with-data/ Share on other sites More sharing options...
budimir Posted August 6, 2008 Share Posted August 6, 2008 can you give us some code, so we can get a better idea what you did and give you some suggestions? Quote Link to comment https://forums.phpfreaks.com/topic/118436-pagination-with-data/#findComment-609623 Share on other sites More sharing options...
hansman Posted August 6, 2008 Author Share Posted August 6, 2008 session_start(); // start up your PHP session! $_SESSION['id'] = $_GET['id']; $_SESSION['table'] = $table; if(isset($_GET['id'])) { $id = $_GET['id']; mysql_connect("xxxxxxxxxx", "xxxxxxxxxxx", "xxxxxxxxxx"); mysql_select_db("xxxxxxxxxxxxxx") or die( "Unable to select database"); $query = "SELECT * FROM $table WHERE id='$id'"; $result = mysql_query($query) or die(mysql_error()); $row = mysql_fetch_array($result) ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title><? echo $row['Name']; ?> </title> <link href="css.css" rel="stylesheet" type="text/css"> </head> <body> <div class="all"> <span class="data"> <?php include("header.php"); ?> <div class="center"> <div class="pestcat"><? echo $row['Name']; ?></div> <div class="pic"><? echo "<img src='saveimg.php?id=".$id."'/>" ?></div> <span class="desc"><? echo $row['sum']; ?></span><br /><br /> <div class="site"><a href="pestdesc.php?id=<? echo $id; ?>?table=<? echo $table; ?>?cat=Habitat">Habitat</a></div><div class="site"></div><div class="site">Color</div><div class="site">Tips For Control</div><div class="site"></div> </div> <? } include("footer.php");?> I want to have links for Habitat, Color, and the will go to pestdesc.php and display what ever you click on, and then show the menu again. Quote Link to comment https://forums.phpfreaks.com/topic/118436-pagination-with-data/#findComment-609644 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.