Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<?php
$p = $_GET['p'];
switch($p) {
default:
print 'Нещо';
break;
case 'forum':
print "<iframe src='http://сайт/forum/index.php'></iframe>";
break;
}
?>
В какъв смисъл кода за контакт?Самият линк ли?svilkaa каза:и тука код-а за КОНТАкТ
case 'contact':
$youremail = "name@domain.com";
$subject = "Contact";
$thankyou = "thankyou.php";
if($email == ""){
?>
Никакъв имейл-адрес не прибавя. Моля завърнете се.<br/>
<?php
}elseif($name == ""){
?>
Никакво име не прибавя. Моля върнете се. <br/>
<?php
}elseif($message == ""){
?>
Никакво съобщение не прибавя. Моля завърнете се. <br/>
<?php
}else{
$msg = ereg_replace("\\\'", "'", $message);
$msg = ereg_replace('\\\"', "\"", $msg);
$message1 = "from: $name\nemail: $email\nmessage:\n$msg1";
mail($youremail, $subject, $msg, "From: $email\r\nReply-to: $email\r\n");
?>
<meta http-equiv="refresh" content="0; url=<?echo $thankyou;?>"">
<?php
}
print "<form action='mail.php' method='post'>
Name <input type='text' name='name'><br/>
Email addess <input type='text' name='email'><br/>
Message<br/>
<textarea name='message' cols='40' rows='5'></textarea><br/>
<input type='submit' value='send'><br/>
</form>";
break;