Forum: PHP Dec 8th, 2008 |
| Replies: 3 Views: 674 the above steps are a good way of doing it with win32...
for a linux server i did this
just write the html code a file with .doc extension . and try opening in microsoft word. it opens perfectly.... |
Forum: PHP Dec 8th, 2008 |
| Replies: 7 Views: 634 oops...
instead of doing like yours $var = $_REQUEST['var']
i will do like the following
foreach($_REQUEST as $key => $v)
$$key = $v;
the above code will convert all form variables... |
Forum: PHP Dec 8th, 2008 |
| Replies: 2 Views: 3,113 the first one will clear only that variable.
the second one will clear the session. so the other browser windows referring to the site for which you have did the session destroy will loose all the... |
Forum: PHP Sep 8th, 2008 |
| Replies: 0 Views: 296 i want to create feed for a specific thread in a forum. so every time that thread got a reply i want to update the rss file for that thread. is it good to create a seperate rss file for threads and... |