I know how to use cURL, but I've always had to manually plug cookies into the script. Can cURL work off of the browsers cookies?
This would probably be very dangerous, so I doubt it can, but its worth knowing. Thanks.
Maybe there is no more space on your server to keep Session information saved? I took a very quick look through the script, and couldn't find anything wrong.
You are dealing with variables, and variable variables.
All variable names in PHP start with $.
Example:
<?
$name = 'scorpion';
echo $name; will display 'scorpion'
?>
Variable variables are just what they sound like. They are variables, with a name that's also changeable. So...
$name =...
Grr.. I've been trying to figure this out for a few days now, but I can't figure it out. I've been into PHP for about 6 months now, so I know the functions needed. I just can't convert it into code.
Here is a function I made to return the first pair of factors that isn't 1 or the number. 20...
Umm... You really aren't using PHP to the fullest.
Here is my mini-tutorial on how to use foreach statements:
foreach() is a loop in PHP that will run through arrays. It only works on arrays. It is usually set up like this:
foreach($Array_name as $key => $value) {
block of statement;
}
That...
I figured it out.
I have a question:
What I did, was make a script on my server that uses my cookies to communicate with a separate forum. I used cURL to log in as me, and change my forum signature to anything the user wanted.
If the admin looks at the logs of my username, he will notice...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.