- Joined
- Jan 30, 2007
- Messages
- 3
- Reaction score
- 0
Code:
<?
$song = "$_GET[song]";
print "Your Requesting: $song";
?>
<form action="mail2.php?song=[B]$song[/B]" method="POST">
<b>Email</b><br>
<input type="text" name="email" size=40>
<p><input type="submit" value=" Send ">
</form>
How would I be able to correctly use the bolded part? As in actually using the string instead of literally using $song

