Forum: PHP Apr 6th, 2009 |
| Replies: 8 Views: 567 You can keep a list of who is logged in,
or you can use a cookie.
A session variable won't do it because each
session would have its own value. |
Forum: PHP Feb 27th, 2009 |
| Replies: 5 Views: 1,591 No problem!
The situation is that I want to transfer some data using POST. It's the only alternative since the action script expects it, and I don't have access to that script.
I have... |
Forum: PHP Feb 27th, 2009 |
| Replies: 5 Views: 1,591 I can't use sessions in this case, since the "action" script only accepts POST.
In the meantime I've found something about POST but I don't fully understand how to implement it:
POST... |
Forum: PHP Feb 27th, 2009 |
| Replies: 5 Views: 1,591 I have written this small test script:
<html>
<body>
<?php
if ($_POST['amount'])
{ foreach ($_POST as $key => $in)
{ echo $key;
echo "=";
echo $in; |
Forum: PHP Feb 27th, 2009 |
| Replies: 20 Views: 831 Unequal number of left and right braces. |
Forum: PHP Jul 4th, 2008 |
| Replies: 1 Views: 555 Actually I only thought about wget while writing the above post.
So I went ahead and tried it, and found that all I needed to do was
system ("wget --output-document=MYPAGE.txt [URL]",$data);
... |
Forum: PHP Jul 4th, 2008 |
| Replies: 1 Views: 555 Searching for a solution to my problem I found this forum.
Hope someone here can help.
Instead of manually updating a table by using copy/paste from a web page, I would like to read the page... |