zerodtk
Regular Member
- Jan 23, 2009
- 233
- 86
hey guys,
so here's the situation...
I just finished a web scraper, written in PHP, however I'm stucked at the easiest part of all
'
please don't ask how, or why, I can't make this part work
lol
so
let's say we create a small form like
and let's create the post.php file which looks like this
it should work right? well, it shows absolutely nothing...
any idea why? it drives me crazy
'
the worst part of all, is that I have made like 1000 forms like this and never had a problem...now, it won't work :/
thanks in advance,
z
so here's the situation...
I just finished a web scraper, written in PHP, however I'm stucked at the easiest part of all
please don't ask how, or why, I can't make this part work
so
let's say we create a small form like
PHP:
<form action="post.php" method="POST" />
<textarea name="texta" id="texta" /></textarea>
<input type="submit" name="submit" />
</form>
PHP:
<?php
echo $_POST['texta'];
?>
any idea why? it drives me crazy
the worst part of all, is that I have made like 1000 forms like this and never had a problem...now, it won't work :/
thanks in advance,
z