PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Moderator: General Moderators
itsmani1
Forum Regular
Posts: 791 Joined: Mon Sep 29, 2003 2:26 am
Location: Islamabad Pakistan
Contact:
Post
by itsmani1 » Thu Oct 23, 2003 3:06 am
hi there......
Code: Select all
<?php
while($row = mysql_fetch_assoc($res)) {
extract($row);
$lin = "<a href="news_home.php"target="mainFrame">$title</a>";
echo $lin;
}
?>
now wot i want's to do is that i want to send all the values of my titles to the nex page in a header can any body tell me how to do that...........
Regards
volka
DevNet Evangelist
Posts: 8391 Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger
Post
by volka » Thu Oct 23, 2003 7:00 am
what kind of header?
devork
Forum Contributor
Posts: 213 Joined: Fri Aug 08, 2003 6:44 am
Location: p(h) developer's network
Post
by devork » Thu Oct 23, 2003 7:40 am
why are you not using sessions for that ...
what's your main idea