Cod: Selectaţi tot
index.php?page=pagina_mea
Daniel
Cod: Selectaţi tot
index.php?page=pagina_mea
Cod: Selectaţi tot
id titlu descriere continut
------------------------------------------------------------------------
1 Titlu pagina 1 Desciere pagina Continutul paginii
2 Titlu paginii 2 Desciere pagina 2 Continutul paginii 2
Cod: Selectaţi tot
$titlu ='Un titlu';
$desc = 'O descriere';
$content = 'Continutul acestei pagini';
$sql = "INSERT INTO nume_tabel (titlu, descriere, continut) VALUES ('$titlu', '$desc', '$content')";
// cod trimitere $sql la basa de date
Cod: Selectaţi tot
// Adresa paginii: index.php?pgid=2
$id = isset($_GET['pgid']) ? intval($_GET['pgid']) : 1;
$sql = "SELECT * FROM nume_tabel WHERE id = $id";
// restul codului
Cod: Selectaţi tot
// display tests which contains questions
$q = "SELECT * FROM test_tests WHERE test_stage=1";
$r = mysql_query($q) or die ("ERROR Can not read from data base");
while ($w = mysql_fetch_array($r)) {
$test_no = $w["test_no"];
echo "<div class=\"col-sm-3 item-box\">";
echo "Test no.";
echo $test_no."<br>";
}
Cod: Selectaţi tot
$page_content = htmlentities($page_content)
Cod: Selectaţi tot
$page_content_de _afisat = html_entity_decode($page_content_din_baza_de_date)
Cod: Selectaţi tot
// display tests which contain questions $q = "SELECT * FROM test_tests WHERE test_stage=1"; $r = mysql_query($q) or die ("ERROR Can not read from data base"); while ($w = mysql_fetch_array($r)) { $test_no = $w["test_no"]; echo "
"; echo "Test no."; echo $test_no."
";
Cod: Selectaţi tot
// get test number
$test = isset($_GET['test']) ? intval($_GET['test']) : 1;
// display tests which contains questions
$q = "SELECT * FROM test_tests WHERE test_stage = $test";
$r = mysql_query($q) or die ("ERROR Can not read from data base");
while ($w = mysql_fetch_array($r)) {
$test_no = $w["test_no"];
echo "<div class=\"col-sm-3 item-box\">";
echo "Test no.";
echo $test_no."<br>";
}