I stated to learn PHP. I really like it but now I have a problem:
With this code I make a html form.
<html>
<head><title>Test</title>
</head>
<body>
<form action=“act.php” method=“GET”>
<input type=“text” name=“name” value=“Name”>
<textarea name=“email” rows=“1” cols=“40”>eMail</textarea>
<input type=“submit” value=“Click me”>
</form>
</body>
</html>
If the person clicks on the button he comes to the act.php site. Here is the code for it:
<html>
<head>
<title></title>
</head>
<body>
<?php
print “Welcome $name\n\n”;
print “Your eMail is: $email”;
?>
</body>
</html>
When I want to view it with my browser it only says:
WelcomeYour eMail is:
Is that normal because in my book, I am learning from it doesn’t say what the browser should show.
_______________
Sorry for the spelling mistakes my English is not very good(if I made some)




11” MacBook Air 1.6GHz dual-core Intel Core i5: $829.00 Delivered
Samsung S22B300B 21.5” LED Backlit LCD Monitor: $129.99 Delivered
Canon imageCLASS Monochrome Multifunction Laser Printer: $129.99 Delivered
