Ok, heres my code =
<?php
$name = $_POST['myName'];
$age = $_POST['myAge'];
$email = $_POST['myEmail'];
$tele = $_POST['myTele'];
$gender = $_POST['myGender'];
$address = $_POST['myAdd'];
$tosave = "<html>
<head>
<title>$name</title>
<meta name="keywords" content="$name $age $email $tele $gender $address">
</head>
<body>
<p><strong>My Name is = $name </strong></p>
<p><strong>My Age is = $age </strong></p>
<p><strong>My Email is = $email </strong></p>
<p><strong>My phone number is = $tele </strong></p>
<p><strong>I am a = $gender </strong></p>
<p><strong>My address is = $address </strong></p>
</body>
</html>
";
$file = "names/$name.htm";
$fp = fopen($file, "w");
if(fwrite($fp, $tosave)) ;
?>
It works except for this line
<meta name="keywords" content="$name $age $email $tele $gender $address">
I think the problem is that it has the " in the middle of two " 's if you understand what i am syaing? So very easy question 🙁 but how do i put " in between two " 's. (for html)