|
-
Maintain a variable after refresh
How do I maintain variables after a refresh?
Last edited by mattwidge; 10-26-2009 at 04:03 AM.
-
Use cookies or store on a server.
-
You couldn't.
But you could use cookies.
If the page is server based, then you could use sessions as well or ($POST and $GET) request.
-
How would I do this? Could you give me an example?
-
Sorry for double post, but here's a stripped-down version of my webpage:
PHP Code:
<html> <head> <script type="text/javascript"> function flag(id,btn) { var divid = id; var abtn = btn; document.getElementById(divid).style.background="#F0D7D7 url('display-bg-flagged.png') repeat-x"; document.getElementById(btn).href="javascript:unflag('"+divid+"','"+abtn+"')"; } function unflag(id,btn) { var divid = id; var abtn = btn; document.getElementById(divid).style.background="#F0F0F0 url('display-bg.png') repeat-x"; document.getElementById(btn).href="javascript:flag('"+divid+"','"+abtn+"')"; } </script> </head> <body> <?php echo "<div class=\"post\" id=\"".$r['id']."\" name=\"flag\" style=\"background:#F0F0F0 url(display-bg.png) repeat-x;\">"; echo "<a href=\"javascript:flag('".$r['id']."','flagbtn".$r['id']."');\" title=\"Flag Feedback\" id=\"flagbtn".$r['id']."\"><img src=\"flag.png\" border=\"0\"></a>"; echo "<div class=\"message\">".$r["message"]."</div></div></div>"; ?> </body> </html>
The $r['xxxxx'] parts get a MySQL value, I didn't bother putting it in though.
Could I make it so that when I press the link, a value gets added to the specific row.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|
Bookmarks