fork download
  1. <!DOCTYPE html>
  2. <html lang="ar">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>إرسال النقاط</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. text-align: center;
  11. direction: rtl;
  12. }
  13. .container {
  14. margin-top: 50px;
  15. max-width: 400px;
  16. margin: auto;
  17. padding: 20px;
  18. border: 1px solid #ddd;
  19. border-radius: 8px;
  20. }
  21. input, button {
  22. width: 100%;
  23. padding: 10px;
  24. margin: 10px 0;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29.  
  30. <div class="container">
  31. <h2>إرسال النقاط لمستخدم آخر</h2>
  32. <form method="POST" action="">
  33. <input type="text" name="recipientUsername" placeholder="اسم المستخدم المستهدف" required>
  34. <input type="number" name="points" placeholder="عدد النقاط" required>
  35. <button type="submit" name="sendPoints">إرسال النقاط</button>
  36. </form>
  37.  
  38. <?php
  39. if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST["sendPoints"])) {
  40. // الحصول على البيانات من النموذج
  41. $recipientUsername = htmlspecialchars($_POST["recipientUsername"]);
  42. $points = intval($_POST["points"]);
  43.  
  44. if ($recipientUsername && $points > 0) {
  45. // افتراضياً، نعرض رسالة بدون حفظ حقيقي للنقاط
  46. echo "<p>تم إرسال $points نقاط إلى $recipientUsername.</p>";
  47.  
  48. // يمكن إضافة كود لحفظ البيانات في قاعدة بيانات هنا إذا أردت.
  49. } else {
  50. echo "<p>يرجى إدخال كافة البيانات بشكل صحيح.</p>";
  51. }
  52. }
  53. ?>
  54. </div>
  55.  
  56. </body>
  57. </html>
  58.  
Success #stdin #stdout #stderr 0.02s 25664KB
stdin
H
stdout
<!DOCTYPE html>
<html lang="ar">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>إرسال النقاط</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            direction: rtl;
        }
        .container {
            margin-top: 50px;
            max-width: 400px;
            margin: auto;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
        }
        input, button {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
        }
    </style>
</head>
<body>

<div class="container">
    <h2>إرسال النقاط لمستخدم آخر</h2>
    <form method="POST" action="">
        <input type="text" name="recipientUsername" placeholder="اسم المستخدم المستهدف" required>
        <input type="number" name="points" placeholder="عدد النقاط" required>
        <button type="submit" name="sendPoints">إرسال النقاط</button>
    </form>

    </div>

</body>
</html>
stderr
PHP Notice:  Undefined index: REQUEST_METHOD in /home/dKCs5k/prog.php on line 39