Jump to content

strings in php form wont work.. urgent help..


hailmunan

Recommended Posts

hello all,

 

i`m trying to make users input the url into a text field.. and then.. when users hit the button,

it will bring the users to another page..

i`m having problems with the strings ..

 

can anyone help?

urgent..

 

<?

//print "$i. <a href='".$row['url']."'>".$row['url']."</a><br>\n";
$url = addslashes( $_POST['urlField'] );
print " 

<form name='form1' method='post' action='http://localhost/fyp/populate.php?url=http://".$url."'> 
  <label>
  <input type='text' name='urlField' id='urlField' value='http://'>

  <input type='submit' name='submitBtn' id='submitBtn' value='Submit'>
  </label>
</form>

";

?>

 

 

 

the string doesnt work..

 

after i click the submit button, the url bar

displays this --> http://localhost/fyp/populate.php?url=http://

 

so the ".$url." doesnt work..

it supposed to go to the url where users keyed in..

e.g : http://localhost/fyp/populate.php?url=http://facebook.com

 

if the users keyed in facebook.com

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.