-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New One Page Interface. Whole re-designed Website
- Loading branch information
Showing
137 changed files
with
15,858 additions
and
10,958 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-222 Bytes
__MACOSX/utaRadioWebBeta/css/._jquery.mobile.structure-1.3.0.min.css
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?php | ||
// To | ||
define("WEBMASTER_EMAIL", '[email protected]'); | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
/* | ||
Credits: Bit Repository | ||
URL: http://www.bitrepository.com/ | ||
*/ | ||
|
||
include 'config.php'; | ||
|
||
error_reporting (E_ALL ^ E_NOTICE); | ||
|
||
$post = (!empty($_POST)) ? true : false; | ||
|
||
if($post) | ||
{ | ||
|
||
$name = stripslashes($_POST['name']); | ||
$email = trim($_POST['email']); | ||
$subject = stripslashes($_POST['subject']); | ||
$message = stripslashes($_POST['message']); | ||
|
||
|
||
$error = ''; | ||
|
||
|
||
|
||
if(!$error) | ||
{ | ||
$mail = mail(WEBMASTER_EMAIL, $subject, $message, | ||
"From: ".$name." <".$email.">\r\n" | ||
."Reply-To: ".$email."\r\n" | ||
."X-Mailer: PHP/" . phpversion()); | ||
|
||
|
||
if($mail) | ||
{ | ||
echo 'OK'; | ||
} | ||
|
||
} | ||
|
||
|
||
} | ||
?> |
Oops, something went wrong.