Forum Moderators: coopster
thanks
Using PHP/curl you can submit the same information via GET or POST, and (if you're tricky) even mimic the 'referer' value so they don't catch on ;)
If it can be done,<snip>
It can be done... ever heard of guestbook spamming?
it's pretty easy really... do it like this:
Your PHP script uses GET to grab the form submit page, then parse out the following values:
<form ... action="GRAB THIS" method="AND THIS"
<input name="AND THIS" value="AND THIS"
Grab every input's Name/Value pair and then using the METHOD, submit the name/value pairs to the file mentioned in the ACTION field. (YOU supply the values)
Simple. :)
(I hope you got all that)
BUT my server doesn't support cron jobs (is that possible btw?, ins't it built in all Linux flaovors?)
Anyways, can I make a php script run automatically on regular inetrvals some other way? Maybe through some kind of command built in php itself?
Thanks in advance