Jump to content

[SOLVED] making what user types in form fill in variable. (simple)


A2xA

Recommended Posts

I want to make it where the user fills out a form of some sort.

 

<form action="disaster.php" method="post">
Enter the Website: <input type="text" name="website" />
<input type="submit" />
</form>

 

 

And then it will re-direct the user to another page with this.

 

then somehow define the website they entered from the form previously

 

$website=(What they entered in form)

 

<?php  
print preg_replace('/.*<body>(.*)<\/body>.*/', '$1', trim(file_get_contents ('$website <--Website Name they entered')));
?>

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.