Skip to content

Instantly share code, notes, and snippets.

Created January 27, 2013 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4650062 to your computer and use it in GitHub Desktop.
Save anonymous/4650062 to your computer and use it in GitHub Desktop.
<form name="scraped" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>" method="post">
<input type="hidden" name="OSscraper_hidden" value="N">
<?php
$attrs = Array('title','name','url', /* and so on */);
$inpCnt = 0;
foreach($articles as $item) {
foreach($attrs as $attr) {
echo '<input type="text" name="article['.$inpCnt.']['.$attr.']"';
}
$inpCnt++;
}
?>
<input type="submit" value="Submit">
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment