Advertisement
Advertisement
| 08.10.2008 at 05:58PM PDT, ID: 23636742 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: |
#Function that I use to show the form.
function htmlRender()
{
$self=$_SERVER['PHP_SELF'];
global $info;
$a="<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">";
echo $a;
$html=<<<HTMLBODY
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>^ifre S1f1rlama Sayfas1</title>
<link href="../design/layout.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div style="width:530px; margin-left:auto; margin-top: 125px; margin-right:auto; text-align:center; font-size:15px; color: Red;"><B>^0FRE SIFIRLAMA FORMU</B></div>
<div id="emailsend">
<div style=" margin-left:auto; margin-right:auto; margin-top: 5px; color:black; text-align:justify; font-size:13px; margin-bottom: 42px;">
A_a1daki alana _ifresini s1f1rlamak istediiniz hesab1n kay1tl1 olduu e-mail adresini giriniz. Girdiiniz e-mail adresine hesab1n1z1n _ifresini
s1f1rlamak için gerekli olan talimatlar gönderilecektir.</div>
<form action="$self" method="post" style="margin-top: 75px">
<b>Lütfen e-mail adresinizi girin ve gönder tu_una bas1n:</b><br />
<div style="text-align:right; margin-top: 0px;">
<input type="text" maxlength="50" size="30" name="email"
style="margin-right: 10px; margin-top: 2px;" />
<br />
<br />
<input type="submit" name="resetsub" value="Send" /></div>
</form>
</div>
<div style="width:400px; margin-left:auto; margin-right:auto; margin-top: 5px; color:Red; font-size:13px; font-weight:bold;">$info</div>
</body>
</html>
HTMLBODY;
return $html;
}
|