3v4l.org

run code in 500+ PHP versions simultaneously
<?php session_start(); // التأكد من أنك "أنت" المسؤول if (!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] !== true) { header("Location: login.php"); exit; } ?> <!DOCTYPE html> <html lang="ar" dir="rtl"> <head> <meta charset="UTF-8"> <title>لوحة تحكم المسؤول</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="login-card" style="width: 80%; max-width: 600px;"> <h2>أهلاً بك يا مدير النظام</h2> <p>هنا يمكنك إضافة أسئلة من ملف RGIE.</p> <form action="save_question.php" method="POST"> <textarea name="question" placeholder="اكتب السؤال هنا..." style="width:100%; height:100px; margin: 10px 0;"></textarea> <input type="text" name="answer" placeholder="الإجابة الصحيحة"> <button type="submit">إضافة السؤال للقاعدة</button> </form> <br> <a href="logout.php">تسجيل الخروج</a> </div> </body> </html>
Output for git.master_jit, git.master

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
51 ms | 742 KiB | 4 Q