Şimdi Ara

Php'de butona tıklayınca yazdığım işlemleri yapmıyor

Daha Fazla
Bu Konudaki Kullanıcılar: Daha Az
1 Misafir - 1 Masaüstü
5 sn
6
Cevap
0
Favori
660
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
0 oy
Öne Çıkar
Sayfa: 1
Giriş
Mesaj
  • Merhaba

    arkadaşlar ben bir php sayfasında bir html input buton oluşturdum ve eğer isset olunca yapacağı işlemleri yazdım ama yapmıyor.

    Kodlar şu şekilde :

    <!DOCTYPE html>
    <html>
    <head>
    <title>Menü değiştir</title>
    <link rel="shortcut icon" href="xxx.ico">
    </head>
    <body>

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">

    <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>

    <?php

    //$menuadi48 = -1;

    session_start();

    if (!isset($_COOKIE['kulad1']) || is_null($_COOKIE['kulad1'])) {

    header("Location:giris.php");

    }else{

    $kulad22 = $_COOKIE['kulad1'];

    $baglanti11 = new PDO("mysql:host=localhost;dbname=xxx","xxx","");
    $baglanti11->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    $vericek19 = $baglanti11 -> prepare("select * from ozelkullanici where kulad = ?");
    $vericek19 -> bindParam(1, $kulad22);
    $vericek19 -> execute();
    $vericek19say = $vericek19 -> rowCount();

    if ($vericek19say == 0) {

    header("Location:xxx.php");

    }else{



    }

    }

    if (!empty($_SESSION['menudegistir'])) {

    $menuno = implode(",", $_SESSION['menudegistir']);

    unset($_SESSION['menudegistir']);

    $vericek47 = $baglanti11 -> prepare("select * from menu where no = ?");
    $vericek47 -> bindParam(1, $menuno);
    $vericek47 -> execute();

    while ($bilgiler47 = $vericek47 -> fetch(PDO::FETCH_ASSOC)) {

    $menuadi47 = $bilgiler47['menuadi'];

    }

    ?>

    <form action="okulmd.php" method="post">

    <input type="text" class="okulmdmat" name="okulmdma" value="<?php echo($menuadi47); ?>">
    <input type="submit" class="tamamb7" value="Tamam" name="submit">
    <input type="submit" class="onizleme4" value="Ön izleme" name="submit2"> // oluşturduğum buton
    <input type="button" class="iptalb7" value="İptal" onclick="location='okulml.php'">

    </form>

    <div id="okulmdmal">
    <label>Menü adı : </label>
    </div>

    <?php

    if (isset($_POST['submit'])) {

    $okulmdmay = filter_input(INPUT_POST, "okulmdma");

    $veridegis13 = $baglanti11 -> prepare("update menu set menuadi = ? where no = ?");
    $veridegis13 -> bindParam(1, $okulmdmay);
    $veridegis13 -> bindParam(2, $menuno);
    $veridegis13 -> execute();

    header("Location:okulml.php");

    }elseif (isset($_POST['submit2'])) { // eğer butona tıklanırsa

    $_SESSION['okulma'] = filter_input(INPUT_POST, "okulmdma");

    header("Location:onizleme.php?tip=menu");

    }

    }elseif (!empty($_SESSION['altmenudegistir'])) {

    $altmenuno = implode(",", $_SESSION['altmenudegistir']);

    $vericek48 = $baglanti11 -> prepare("select * from altmenu where no = ?");
    $vericek48 -> bindParam(1, $altmenuno);
    $vericek48 -> execute();

    while ($bilgiler48 = $vericek48 -> fetch(PDO::FETCH_ASSOC)) {

    $menuadi48 = $bilgiler48['menuadi'];
    $anamenuid48 = $bilgiler48['anamenuid'];

    }

    $vericek60 = $baglanti11 -> prepare("select * from menu");
    $vericek60 -> execute();

    unset($_SESSION['altmenudegistir']);

    ?>

    <form action="okulmd.php" method="post">

    <select id="menusecme1" name="menusecme">

    <?php

    while ($bilgiler60 = $vericek60 -> fetch(PDO::FETCH_ASSOC)) { ?>

    <option value="<?php echo($bilgiler60['no']); ?>"><?php echo($bilgiler60['menuadi']); ?></option>

    <?php }

    ?>

    </select>

    <input type="text" class="okulmdamat" name="okulmdama" value="<?php echo($menuadi48); ?>">
    <input type="submit" class="tamamb8" value="Tamam" name="submit3">
    <input type="submit" class="onizleme3" value="Ön izleme" name="submit4">
    <input type="button" class="iptalb8" value="İptal" onclick="location='okulml.php'">

    </form>

    <div id="okulmdamal">
    <label>Alt menü adı : </label>
    </div>

    <div id="okulmdmal2">
    <label>Menü adı : </label>
    </div>

    <?php

    if (isset($_POST['submit3'])) {

    $okulmdamay = filter_input(INPUT_POST, "okulmdama");
    $menusecmey = filter_input(INPUT_POST, "menusecme");

    $menusecmey = intval($menusecmey);

    $veridegis14 = $baglanti11 -> prepare("update altmenu set anamenuid = ?, menuadi = ? where no = ?");
    $veridegis14 -> bindParam(1, $menusecmey);
    $veridegis14 -> bindParam(2, $okulmdamay);
    $veridegis14 -> bindParam(3, $altmenuno);
    $veridegis14 -> execute();

    header("Location:okulml.php");

    }elseif (isset($_POST['submit4'])) {

    $menunoy = filter_input(INPUT_POST, "menusecme");

    $vericek80 = $baglanti11 -> prepare("select * from menu where no = ?");
    $vericek80 -> bindParam(1, $menunoy);
    $vericek80 -> execute();

    while ($bilgiler80 = $vericek80 -> fetch(PDO::FETCH_ASSOC)) {

    $_SESSION['okulma'] = $bilgiler80['menuadi'];

    }

    $_SESSION['okulama'] = filter_input(INPUT_POST, "okulmdama");

    header("Location:onizleme.php?tip=altmenu");

    }

    }

    ?>

    <div id="okull">
    <label>Özel Kullanıcı</label>
    </div>

    <div id="okulall">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129268616&url=okulal.php" data-href="okulal.php"><label>Alım listesi</label></a>
    </div>

    <div id="okulkll">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129268616&url=okulkl.php" data-href="okulkl.php"><label>Kullanıcı listesi</label></a>
    </div>

    <div id="okulull">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129268616&url=okulul.php" data-href="okulul.php"><label>Ürün listesi</label></a>
    </div>

    <div id="okulmll">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129268616&url=okulml.php" data-href="okulml.php"><label>Menü listesi</label></a>
    </div>

    <div id="okulcl">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129268616&url=egoldcikis.php" data-href="egoldcikis.php"><label>Çıkış</label></a>
    </div>

    <div id="okulmdl">
    <label>Menü değiştir</label>
    </div>

    <style type="text/css">

    #okulmll{

    position: absolute;
    top: 250px;
    left: 50px;

    }

    input.iptalb8{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 1135px;

    }

    input.tamamb8{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 350px;

    }

    input.iptalb7{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 1135px;

    }

    input.tamamb7{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 350px;

    }

    #okulmdl{

    position: absolute;
    top: 125px;
    left: 720px;

    }

    #menusecme1{

    position: absolute;
    width: 750px;
    top: 250px;
    left: 450px;

    }

    #okulmdmal2{

    position: absolute;
    top: 250px;
    left: 350px;

    }

    input.okulmdamat{

    position: absolute;
    width: 750px;
    top: 200px;
    left: 450px;

    }

    #okulmdamal{

    position: absolute;
    top: 200px;
    left: 350px;

    }

    input.okulmdmat{

    position: absolute;
    width: 750px;
    top: 200px;
    left: 450px;

    }

    #okulmdmal{

    position: absolute;
    top: 200px;
    left: 350px;

    }

    #okull{

    position: absolute;
    top: 25px;
    left: 625px;

    }

    #okulall{

    position: absolute;
    top: 175px;
    left: 50px;

    }

    #okulkll{

    position: absolute;
    top: 200px;
    left: 50px;

    }

    #okulull{

    position: absolute;
    top: 225px;
    left: 50px;

    }

    #okulcl{

    position: absolute;
    top: 275px;
    left: 50px;

    }

    </style>

    <hr style="position: absolute;top: 75px;width: 1349px;">
    <hr style="width: 1px;height: 545px;position: absolute;left: 200px;top: 75px;" ">

    </body>
    </html>


    Kodda bir yere yorum satırları yazdım orada sorun olduğunu düşünüyorum. Ben butona tıklayınca post ile gönderilen veriyi sessiona aktarıp başka bir sayfaya header ile göndermek istiyorum. Ama sayfa yenileniyor, göndermiyor. Ama garip olan şey : tüm headerları silince bile butona tıklayınca sayfa yenileniyor.

    Bu sorunu nasıl çözebilirim?

    Yardımınıza ihtiyacım var.







  • <!DOCTYPE html> 
    <html>
    <head>
    <title>Menü değiştir</title>
    <link rel="shortcut icon" href="xxx.ico">
    </head>
    <body>

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">

    <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>

    <?php

    //$menuadi48 = -1;

    session_start();

    if (!isset($_COOKIE['kulad1']) || is_null($_COOKIE['kulad1'])) {

    header("Location:giris.php");

    }else{

    $kulad22 = $_COOKIE['kulad1'];

    $baglanti11 = new PDO("mysql:host=localhost;dbname=xxx","xxx","");
    $baglanti11->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    $vericek19 = $baglanti11 -> prepare("select * from ozelkullanici where kulad = ?");
    $vericek19 -> bindParam(1, $kulad22);
    $vericek19 -> execute();
    $vericek19say = $vericek19 -> rowCount();

    if ($vericek19say == 0) {

    header("Location:xxx.php");

    }else{



    }

    }

    if (!empty($_SESSION['menudegistir'])) {

    $menuno = implode(",", $_SESSION['menudegistir']);

    unset($_SESSION['menudegistir']);

    $vericek47 = $baglanti11 -> prepare("select * from menu where no = ?");
    $vericek47 -> bindParam(1, $menuno);
    $vericek47 -> execute();

    while ($bilgiler47 = $vericek47 -> fetch(PDO::FETCH_ASSOC)) {

    $menuadi47 = $bilgiler47['menuadi'];

    }

    ?>

    <form action="okulmd.php" method="post">

    <input type="text" class="okulmdmat" name="okulmdma" value="<?php echo($menuadi47); ?>">
    <input type="submit" class="tamamb7" value="Tamam" name="submit">
    <input type="submit" class="onizleme4" value="Ön izleme" name="submit2"> // oluşturduğum buton
    <input type="button" class="iptalb7" value="İptal" onclick="location='okulml.php'">

    </form>

    <div id="okulmdmal">
    <label>Menü adı : </label>
    </div>

    <?php

    if (isset($_POST['submit'])) {

    $okulmdmay =$_POST['okulmdma'] ;

    $veridegis13 = $baglanti11 -> prepare("update menu set menuadi = ? where no = ?");
    $veridegis13 -> bindParam(1, $okulmdmay);
    $veridegis13 -> bindParam(2, $menuno);
    $veridegis13 -> execute();

    header("Location:okulml.php");

    }elseif (isset($_POST['submit2'])) { // eğer butona tıklanırsa

    $_SESSION['okulma'] = $_POST['okulmdma'];

    header("Location:onizleme.php?tip=menu");

    }

    }elseif (!empty($_SESSION['altmenudegistir'])) {

    $altmenuno = implode(",", $_SESSION['altmenudegistir']);

    $vericek48 = $baglanti11 -> prepare("select * from altmenu where no = ?");
    $vericek48 -> bindParam(1, $altmenuno);
    $vericek48 -> execute();

    while ($bilgiler48 = $vericek48 -> fetch(PDO::FETCH_ASSOC)) {

    $menuadi48 = $bilgiler48['menuadi'];
    $anamenuid48 = $bilgiler48['anamenuid'];

    }

    $vericek60 = $baglanti11 -> prepare("select * from menu");
    $vericek60 -> execute();

    unset($_SESSION['altmenudegistir']);

    ?>

    <form action="okulmd.php" method="post">

    <select id="menusecme1" name="menusecme">

    <?php

    while ($bilgiler60 = $vericek60 -> fetch(PDO::FETCH_ASSOC)) { ?>

    <option value="<?php echo($bilgiler60['no']); ?>"><?php echo($bilgiler60['menuadi']); ?></option>

    <?php }

    ?>

    </select>

    <input type="text" class="okulmdamat" name="okulmdama" value="<?php echo($menuadi48); ?>">
    <input type="submit" class="tamamb8" value="Tamam" name="submit3">
    <input type="submit" class="onizleme3" value="Ön izleme" name="submit4">
    <input type="button" class="iptalb8" value="İptal" onclick="location='okulml.php'">

    </form>

    <div id="okulmdamal">
    <label>Alt menü adı : </label>
    </div>

    <div id="okulmdmal2">
    <label>Menü adı : </label>
    </div>

    <?php

    if (isset($_POST['submit3'])) {

    $okulmdamay = filter_input(INPUT_POST, "okulmdama");
    $menusecmey = filter_input(INPUT_POST, "menusecme");

    $menusecmey = intval($menusecmey);

    $veridegis14 = $baglanti11 -> prepare("update altmenu set anamenuid = ?, menuadi = ? where no = ?");
    $veridegis14 -> bindParam(1, $menusecmey);
    $veridegis14 -> bindParam(2, $okulmdamay);
    $veridegis14 -> bindParam(3, $altmenuno);
    $veridegis14 -> execute();

    header("Location:okulml.php");

    }elseif (isset($_POST['submit4'])) {

    $menunoy = filter_input(INPUT_POST, "menusecme");

    $vericek80 = $baglanti11 -> prepare("select * from menu where no = ?");
    $vericek80 -> bindParam(1, $menunoy);
    $vericek80 -> execute();

    while ($bilgiler80 = $vericek80 -> fetch(PDO::FETCH_ASSOC)) {

    $_SESSION['okulma'] = $bilgiler80['menuadi'];

    }

    $_SESSION['okulama'] = filter_input(INPUT_POST, "okulmdama");

    header("Location:onizleme.php?tip=altmenu");

    }

    }

    ?>

    <div id="okull">
    <label>Özel Kullanıcı</label>
    </div>

    <div id="okulall">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129281555&url=okulal.php" data-href="okulal.php"><label>Alım listesi</label></a>
    </div>

    <div id="okulkll">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129281555&url=okulkl.php" data-href="okulkl.php"><label>Kullanıcı listesi</label></a>
    </div>

    <div id="okulull">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129281555&url=okulul.php" data-href="okulul.php"><label>Ürün listesi</label></a>
    </div>

    <div id="okulmll">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129281555&url=okulml.php" data-href="okulml.php"><label>Menü listesi</label></a>
    </div>

    <div id="okulcl">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129281555&url=egoldcikis.php" data-href="egoldcikis.php"><label>Çıkış</label></a>
    </div>

    <div id="okulmdl">
    <label>Menü değiştir</label>
    </div>

    <style type="text/css">

    #okulmll{

    position: absolute;
    top: 250px;
    left: 50px;

    }

    input.iptalb8{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 1135px;

    }

    input.tamamb8{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 350px;

    }

    input.iptalb7{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 1135px;

    }

    input.tamamb7{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 350px;

    }

    #okulmdl{

    position: absolute;
    top: 125px;
    left: 720px;

    }

    #menusecme1{

    position: absolute;
    width: 750px;
    top: 250px;
    left: 450px;

    }

    #okulmdmal2{

    position: absolute;
    top: 250px;
    left: 350px;

    }

    input.okulmdamat{

    position: absolute;
    width: 750px;
    top: 200px;
    left: 450px;

    }

    #okulmdamal{

    position: absolute;
    top: 200px;
    left: 350px;

    }

    input.okulmdmat{

    position: absolute;
    width: 750px;
    top: 200px;
    left: 450px;

    }

    #okulmdmal{

    position: absolute;
    top: 200px;
    left: 350px;

    }

    #okull{

    position: absolute;
    top: 25px;
    left: 625px;

    }

    #okulall{

    position: absolute;
    top: 175px;
    left: 50px;

    }

    #okulkll{

    position: absolute;
    top: 200px;
    left: 50px;

    }

    #okulull{

    position: absolute;
    top: 225px;
    left: 50px;

    }

    #okulcl{

    position: absolute;
    top: 275px;
    left: 50px;

    }

    </style>

    <hr style="position: absolute;top: 75px;width: 1349px;">
    <hr style="width: 1px;height: 545px;position: absolute;left: 200px;top: 75px;" ">

    </body>
    </html>




  • quote:

    Orijinalden alıntı: Viagara Şelalesi

    <!DOCTYPE html> 
    <html>
    <head>
    <title>Menü değiştir</title>
    <link rel="shortcut icon" href="xxx.ico">
    </head>
    <body>

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">

    <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>

    <?php

    //$menuadi48 = -1;

    session_start();

    if (!isset($_COOKIE['kulad1']) || is_null($_COOKIE['kulad1'])) {

    header("Location:giris.php");

    }else{

    $kulad22 = $_COOKIE['kulad1'];

    $baglanti11 = new PDO("mysql:host=localhost;dbname=xxx","xxx","");
    $baglanti11->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    $vericek19 = $baglanti11 -> prepare("select * from ozelkullanici where kulad = ?");
    $vericek19 -> bindParam(1, $kulad22);
    $vericek19 -> execute();
    $vericek19say = $vericek19 -> rowCount();

    if ($vericek19say == 0) {

    header("Location:xxx.php");

    }else{



    }

    }

    if (!empty($_SESSION['menudegistir'])) {

    $menuno = implode(",", $_SESSION['menudegistir']);

    unset($_SESSION['menudegistir']);

    $vericek47 = $baglanti11 -> prepare("select * from menu where no = ?");
    $vericek47 -> bindParam(1, $menuno);
    $vericek47 -> execute();

    while ($bilgiler47 = $vericek47 -> fetch(PDO::FETCH_ASSOC)) {

    $menuadi47 = $bilgiler47['menuadi'];

    }

    ?>

    <form action="okulmd.php" method="post">

    <input type="text" class="okulmdmat" name="okulmdma" value="<?php echo($menuadi47); ?>">
    <input type="submit" class="tamamb7" value="Tamam" name="submit">
    <input type="submit" class="onizleme4" value="Ön izleme" name="submit2"> // oluşturduğum buton
    <input type="button" class="iptalb7" value="İptal" onclick="location='okulml.php'">

    </form>

    <div id="okulmdmal">
    <label>Menü adı : </label>
    </div>

    <?php

    if (isset($_POST['submit'])) {

    $okulmdmay =$_POST['okulmdma'] ;

    $veridegis13 = $baglanti11 -> prepare("update menu set menuadi = ? where no = ?");
    $veridegis13 -> bindParam(1, $okulmdmay);
    $veridegis13 -> bindParam(2, $menuno);
    $veridegis13 -> execute();

    header("Location:okulml.php");

    }elseif (isset($_POST['submit2'])) { // eğer butona tıklanırsa

    $_SESSION['okulma'] = $_POST['okulmdma'];

    header("Location:onizleme.php?tip=menu");

    }

    }elseif (!empty($_SESSION['altmenudegistir'])) {

    $altmenuno = implode(",", $_SESSION['altmenudegistir']);

    $vericek48 = $baglanti11 -> prepare("select * from altmenu where no = ?");
    $vericek48 -> bindParam(1, $altmenuno);
    $vericek48 -> execute();

    while ($bilgiler48 = $vericek48 -> fetch(PDO::FETCH_ASSOC)) {

    $menuadi48 = $bilgiler48['menuadi'];
    $anamenuid48 = $bilgiler48['anamenuid'];

    }

    $vericek60 = $baglanti11 -> prepare("select * from menu");
    $vericek60 -> execute();

    unset($_SESSION['altmenudegistir']);

    ?>

    <form action="okulmd.php" method="post">

    <select id="menusecme1" name="menusecme">

    <?php

    while ($bilgiler60 = $vericek60 -> fetch(PDO::FETCH_ASSOC)) { ?>

    <option value="<?php echo($bilgiler60['no']); ?>"><?php echo($bilgiler60['menuadi']); ?></option>

    <?php }

    ?>

    </select>

    <input type="text" class="okulmdamat" name="okulmdama" value="<?php echo($menuadi48); ?>">
    <input type="submit" class="tamamb8" value="Tamam" name="submit3">
    <input type="submit" class="onizleme3" value="Ön izleme" name="submit4">
    <input type="button" class="iptalb8" value="İptal" onclick="location='okulml.php'">

    </form>

    <div id="okulmdamal">
    <label>Alt menü adı : </label>
    </div>

    <div id="okulmdmal2">
    <label>Menü adı : </label>
    </div>

    <?php

    if (isset($_POST['submit3'])) {

    $okulmdamay = filter_input(INPUT_POST, "okulmdama");
    $menusecmey = filter_input(INPUT_POST, "menusecme");

    $menusecmey = intval($menusecmey);

    $veridegis14 = $baglanti11 -> prepare("update altmenu set anamenuid = ?, menuadi = ? where no = ?");
    $veridegis14 -> bindParam(1, $menusecmey);
    $veridegis14 -> bindParam(2, $okulmdamay);
    $veridegis14 -> bindParam(3, $altmenuno);
    $veridegis14 -> execute();

    header("Location:okulml.php");

    }elseif (isset($_POST['submit4'])) {

    $menunoy = filter_input(INPUT_POST, "menusecme");

    $vericek80 = $baglanti11 -> prepare("select * from menu where no = ?");
    $vericek80 -> bindParam(1, $menunoy);
    $vericek80 -> execute();

    while ($bilgiler80 = $vericek80 -> fetch(PDO::FETCH_ASSOC)) {

    $_SESSION['okulma'] = $bilgiler80['menuadi'];

    }

    $_SESSION['okulama'] = filter_input(INPUT_POST, "okulmdama");

    header("Location:onizleme.php?tip=altmenu");

    }

    }

    ?>

    <div id="okull">
    <label>Özel Kullanıcı</label>
    </div>

    <div id="okulall">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289026&url=okulal.php" data-href="okulal.php"><label>Alım listesi</label></a>
    </div>

    <div id="okulkll">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289026&url=okulkl.php" data-href="okulkl.php"><label>Kullanıcı listesi</label></a>
    </div>

    <div id="okulull">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289026&url=okulul.php" data-href="okulul.php"><label>Ürün listesi</label></a>
    </div>

    <div id="okulmll">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289026&url=okulml.php" data-href="okulml.php"><label>Menü listesi</label></a>
    </div>

    <div id="okulcl">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289026&url=egoldcikis.php" data-href="egoldcikis.php"><label>Çıkış</label></a>
    </div>

    <div id="okulmdl">
    <label>Menü değiştir</label>
    </div>

    <style type="text/css">

    #okulmll{

    position: absolute;
    top: 250px;
    left: 50px;

    }

    input.iptalb8{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 1135px;

    }

    input.tamamb8{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 350px;

    }

    input.iptalb7{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 1135px;

    }

    input.tamamb7{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 350px;

    }

    #okulmdl{

    position: absolute;
    top: 125px;
    left: 720px;

    }

    #menusecme1{

    position: absolute;
    width: 750px;
    top: 250px;
    left: 450px;

    }

    #okulmdmal2{

    position: absolute;
    top: 250px;
    left: 350px;

    }

    input.okulmdamat{

    position: absolute;
    width: 750px;
    top: 200px;
    left: 450px;

    }

    #okulmdamal{

    position: absolute;
    top: 200px;
    left: 350px;

    }

    input.okulmdmat{

    position: absolute;
    width: 750px;
    top: 200px;
    left: 450px;

    }

    #okulmdmal{

    position: absolute;
    top: 200px;
    left: 350px;

    }

    #okull{

    position: absolute;
    top: 25px;
    left: 625px;

    }

    #okulall{

    position: absolute;
    top: 175px;
    left: 50px;

    }

    #okulkll{

    position: absolute;
    top: 200px;
    left: 50px;

    }

    #okulull{

    position: absolute;
    top: 225px;
    left: 50px;

    }

    #okulcl{

    position: absolute;
    top: 275px;
    left: 50px;

    }

    </style>

    <hr style="position: absolute;top: 75px;width: 1349px;">
    <hr style="width: 1px;height: 545px;position: absolute;left: 200px;top: 75px;" ">

    </body>
    </html>


    Sonuç aynı maalesef.




  • quote:

    Orijinalden alıntı: webandyazilimprofesor


    quote:

    Orijinalden alıntı: Viagara Şelalesi

    <!DOCTYPE html> 
    <html>
    <head>
    <title>Menü değiştir</title>
    <link rel="shortcut icon" href="xxx.ico">
    </head>
    <body>

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">

    <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>

    <?php

    //$menuadi48 = -1;

    session_start();

    if (!isset($_COOKIE['kulad1']) || is_null($_COOKIE['kulad1'])) {

    header("Location:giris.php");

    }else{

    $kulad22 = $_COOKIE['kulad1'];

    $baglanti11 = new PDO("mysql:host=localhost;dbname=xxx","xxx","");
    $baglanti11->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    $vericek19 = $baglanti11 -> prepare("select * from ozelkullanici where kulad = ?");
    $vericek19 -> bindParam(1, $kulad22);
    $vericek19 -> execute();
    $vericek19say = $vericek19 -> rowCount();

    if ($vericek19say == 0) {

    header("Location:xxx.php");

    }else{



    }

    }

    if (!empty($_SESSION['menudegistir'])) {

    $menuno = implode(",", $_SESSION['menudegistir']);

    unset($_SESSION['menudegistir']);

    $vericek47 = $baglanti11 -> prepare("select * from menu where no = ?");
    $vericek47 -> bindParam(1, $menuno);
    $vericek47 -> execute();

    while ($bilgiler47 = $vericek47 -> fetch(PDO::FETCH_ASSOC)) {

    $menuadi47 = $bilgiler47['menuadi'];

    }

    ?>

    <form action="okulmd.php" method="post">

    <input type="text" class="okulmdmat" name="okulmdma" value="<?php echo($menuadi47); ?>">
    <input type="submit" class="tamamb7" value="Tamam" name="submit">
    <input type="submit" class="onizleme4" value="Ön izleme" name="submit2"> // oluşturduğum buton
    <input type="button" class="iptalb7" value="İptal" onclick="location='okulml.php'">

    </form>

    <div id="okulmdmal">
    <label>Menü adı : </label>
    </div>

    <?php

    if (isset($_POST['submit'])) {

    $okulmdmay =$_POST['okulmdma'] ;

    $veridegis13 = $baglanti11 -> prepare("update menu set menuadi = ? where no = ?");
    $veridegis13 -> bindParam(1, $okulmdmay);
    $veridegis13 -> bindParam(2, $menuno);
    $veridegis13 -> execute();

    header("Location:okulml.php");

    }elseif (isset($_POST['submit2'])) { // eğer butona tıklanırsa

    $_SESSION['okulma'] = $_POST['okulmdma'];

    header("Location:onizleme.php?tip=menu");

    }

    }elseif (!empty($_SESSION['altmenudegistir'])) {

    $altmenuno = implode(",", $_SESSION['altmenudegistir']);

    $vericek48 = $baglanti11 -> prepare("select * from altmenu where no = ?");
    $vericek48 -> bindParam(1, $altmenuno);
    $vericek48 -> execute();

    while ($bilgiler48 = $vericek48 -> fetch(PDO::FETCH_ASSOC)) {

    $menuadi48 = $bilgiler48['menuadi'];
    $anamenuid48 = $bilgiler48['anamenuid'];

    }

    $vericek60 = $baglanti11 -> prepare("select * from menu");
    $vericek60 -> execute();

    unset($_SESSION['altmenudegistir']);

    ?>

    <form action="okulmd.php" method="post">

    <select id="menusecme1" name="menusecme">

    <?php

    while ($bilgiler60 = $vericek60 -> fetch(PDO::FETCH_ASSOC)) { ?>

    <option value="<?php echo($bilgiler60['no']); ?>"><?php echo($bilgiler60['menuadi']); ?></option>

    <?php }

    ?>

    </select>

    <input type="text" class="okulmdamat" name="okulmdama" value="<?php echo($menuadi48); ?>">
    <input type="submit" class="tamamb8" value="Tamam" name="submit3">
    <input type="submit" class="onizleme3" value="Ön izleme" name="submit4">
    <input type="button" class="iptalb8" value="İptal" onclick="location='okulml.php'">

    </form>

    <div id="okulmdamal">
    <label>Alt menü adı : </label>
    </div>

    <div id="okulmdmal2">
    <label>Menü adı : </label>
    </div>

    <?php

    if (isset($_POST['submit3'])) {

    $okulmdamay = filter_input(INPUT_POST, "okulmdama");
    $menusecmey = filter_input(INPUT_POST, "menusecme");

    $menusecmey = intval($menusecmey);

    $veridegis14 = $baglanti11 -> prepare("update altmenu set anamenuid = ?, menuadi = ? where no = ?");
    $veridegis14 -> bindParam(1, $menusecmey);
    $veridegis14 -> bindParam(2, $okulmdamay);
    $veridegis14 -> bindParam(3, $altmenuno);
    $veridegis14 -> execute();

    header("Location:okulml.php");

    }elseif (isset($_POST['submit4'])) {

    $menunoy = filter_input(INPUT_POST, "menusecme");

    $vericek80 = $baglanti11 -> prepare("select * from menu where no = ?");
    $vericek80 -> bindParam(1, $menunoy);
    $vericek80 -> execute();

    while ($bilgiler80 = $vericek80 -> fetch(PDO::FETCH_ASSOC)) {

    $_SESSION['okulma'] = $bilgiler80['menuadi'];

    }

    $_SESSION['okulama'] = filter_input(INPUT_POST, "okulmdama");

    header("Location:onizleme.php?tip=altmenu");

    }

    }

    ?>

    <div id="okull">
    <label>Özel Kullanıcı</label>
    </div>

    <div id="okulall">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289606&url=okulal.php" data-href="okulal.php"><label>Alım listesi</label></a>
    </div>

    <div id="okulkll">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289606&url=okulkl.php" data-href="okulkl.php"><label>Kullanıcı listesi</label></a>
    </div>

    <div id="okulull">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289606&url=okulul.php" data-href="okulul.php"><label>Ürün listesi</label></a>
    </div>

    <div id="okulmll">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289606&url=okulml.php" data-href="okulml.php"><label>Menü listesi</label></a>
    </div>

    <div id="okulcl">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289606&url=egoldcikis.php" data-href="egoldcikis.php"><label>Çıkış</label></a>
    </div>

    <div id="okulmdl">
    <label>Menü değiştir</label>
    </div>

    <style type="text/css">

    #okulmll{

    position: absolute;
    top: 250px;
    left: 50px;

    }

    input.iptalb8{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 1135px;

    }

    input.tamamb8{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 350px;

    }

    input.iptalb7{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 1135px;

    }

    input.tamamb7{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 350px;

    }

    #okulmdl{

    position: absolute;
    top: 125px;
    left: 720px;

    }

    #menusecme1{

    position: absolute;
    width: 750px;
    top: 250px;
    left: 450px;

    }

    #okulmdmal2{

    position: absolute;
    top: 250px;
    left: 350px;

    }

    input.okulmdamat{

    position: absolute;
    width: 750px;
    top: 200px;
    left: 450px;

    }

    #okulmdamal{

    position: absolute;
    top: 200px;
    left: 350px;

    }

    input.okulmdmat{

    position: absolute;
    width: 750px;
    top: 200px;
    left: 450px;

    }

    #okulmdmal{

    position: absolute;
    top: 200px;
    left: 350px;

    }

    #okull{

    position: absolute;
    top: 25px;
    left: 625px;

    }

    #okulall{

    position: absolute;
    top: 175px;
    left: 50px;

    }

    #okulkll{

    position: absolute;
    top: 200px;
    left: 50px;

    }

    #okulull{

    position: absolute;
    top: 225px;
    left: 50px;

    }

    #okulcl{

    position: absolute;
    top: 275px;
    left: 50px;

    }

    </style>

    <hr style="position: absolute;top: 75px;width: 1349px;">
    <hr style="width: 1px;height: 545px;position: absolute;left: 200px;top: 75px;" ">

    </body>
    </html>


    Sonuç aynı maalesef.

    bende calisiyor wamp server kur bence.

    < Bu ileti mobil sürüm kullanılarak atıldı >




  • quote:

    Orijinalden alıntı: Viagara Şelalesi


    quote:

    Orijinalden alıntı: webandyazilimprofesor


    quote:

    Orijinalden alıntı: Viagara Şelalesi

    <!DOCTYPE html> 
    <html>
    <head>
    <title>Menü değiştir</title>
    <link rel="shortcut icon" href="xxx.ico">
    </head>
    <body>

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">

    <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>

    <?php

    //$menuadi48 = -1;

    session_start();

    if (!isset($_COOKIE['kulad1']) || is_null($_COOKIE['kulad1'])) {

    header("Location:giris.php");

    }else{

    $kulad22 = $_COOKIE['kulad1'];

    $baglanti11 = new PDO("mysql:host=localhost;dbname=xxx","xxx","");
    $baglanti11->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    $vericek19 = $baglanti11 -> prepare("select * from ozelkullanici where kulad = ?");
    $vericek19 -> bindParam(1, $kulad22);
    $vericek19 -> execute();
    $vericek19say = $vericek19 -> rowCount();

    if ($vericek19say == 0) {

    header("Location:xxx.php");

    }else{



    }

    }

    if (!empty($_SESSION['menudegistir'])) {

    $menuno = implode(",", $_SESSION['menudegistir']);

    unset($_SESSION['menudegistir']);

    $vericek47 = $baglanti11 -> prepare("select * from menu where no = ?");
    $vericek47 -> bindParam(1, $menuno);
    $vericek47 -> execute();

    while ($bilgiler47 = $vericek47 -> fetch(PDO::FETCH_ASSOC)) {

    $menuadi47 = $bilgiler47['menuadi'];

    }

    ?>

    <form action="okulmd.php" method="post">

    <input type="text" class="okulmdmat" name="okulmdma" value="<?php echo($menuadi47); ?>">
    <input type="submit" class="tamamb7" value="Tamam" name="submit">
    <input type="submit" class="onizleme4" value="Ön izleme" name="submit2"> // oluşturduğum buton
    <input type="button" class="iptalb7" value="İptal" onclick="location='okulml.php'">

    </form>

    <div id="okulmdmal">
    <label>Menü adı : </label>
    </div>

    <?php

    if (isset($_POST['submit'])) {

    $okulmdmay =$_POST['okulmdma'] ;

    $veridegis13 = $baglanti11 -> prepare("update menu set menuadi = ? where no = ?");
    $veridegis13 -> bindParam(1, $okulmdmay);
    $veridegis13 -> bindParam(2, $menuno);
    $veridegis13 -> execute();

    header("Location:okulml.php");

    }elseif (isset($_POST['submit2'])) { // eğer butona tıklanırsa

    $_SESSION['okulma'] = $_POST['okulmdma'];

    header("Location:onizleme.php?tip=menu");

    }

    }elseif (!empty($_SESSION['altmenudegistir'])) {

    $altmenuno = implode(",", $_SESSION['altmenudegistir']);

    $vericek48 = $baglanti11 -> prepare("select * from altmenu where no = ?");
    $vericek48 -> bindParam(1, $altmenuno);
    $vericek48 -> execute();

    while ($bilgiler48 = $vericek48 -> fetch(PDO::FETCH_ASSOC)) {

    $menuadi48 = $bilgiler48['menuadi'];
    $anamenuid48 = $bilgiler48['anamenuid'];

    }

    $vericek60 = $baglanti11 -> prepare("select * from menu");
    $vericek60 -> execute();

    unset($_SESSION['altmenudegistir']);

    ?>

    <form action="okulmd.php" method="post">

    <select id="menusecme1" name="menusecme">

    <?php

    while ($bilgiler60 = $vericek60 -> fetch(PDO::FETCH_ASSOC)) { ?>

    <option value="<?php echo($bilgiler60['no']); ?>"><?php echo($bilgiler60['menuadi']); ?></option>

    <?php }

    ?>

    </select>

    <input type="text" class="okulmdamat" name="okulmdama" value="<?php echo($menuadi48); ?>">
    <input type="submit" class="tamamb8" value="Tamam" name="submit3">
    <input type="submit" class="onizleme3" value="Ön izleme" name="submit4">
    <input type="button" class="iptalb8" value="İptal" onclick="location='okulml.php'">

    </form>

    <div id="okulmdamal">
    <label>Alt menü adı : </label>
    </div>

    <div id="okulmdmal2">
    <label>Menü adı : </label>
    </div>

    <?php

    if (isset($_POST['submit3'])) {

    $okulmdamay = filter_input(INPUT_POST, "okulmdama");
    $menusecmey = filter_input(INPUT_POST, "menusecme");

    $menusecmey = intval($menusecmey);

    $veridegis14 = $baglanti11 -> prepare("update altmenu set anamenuid = ?, menuadi = ? where no = ?");
    $veridegis14 -> bindParam(1, $menusecmey);
    $veridegis14 -> bindParam(2, $okulmdamay);
    $veridegis14 -> bindParam(3, $altmenuno);
    $veridegis14 -> execute();

    header("Location:okulml.php");

    }elseif (isset($_POST['submit4'])) {

    $menunoy = filter_input(INPUT_POST, "menusecme");

    $vericek80 = $baglanti11 -> prepare("select * from menu where no = ?");
    $vericek80 -> bindParam(1, $menunoy);
    $vericek80 -> execute();

    while ($bilgiler80 = $vericek80 -> fetch(PDO::FETCH_ASSOC)) {

    $_SESSION['okulma'] = $bilgiler80['menuadi'];

    }

    $_SESSION['okulama'] = filter_input(INPUT_POST, "okulmdama");

    header("Location:onizleme.php?tip=altmenu");

    }

    }

    ?>

    <div id="okull">
    <label>Özel Kullanıcı</label>
    </div>

    <div id="okulall">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289621&url=okulal.php" data-href="okulal.php"><label>Alım listesi</label></a>
    </div>

    <div id="okulkll">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289621&url=okulkl.php" data-href="okulkl.php"><label>Kullanıcı listesi</label></a>
    </div>

    <div id="okulull">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289621&url=okulul.php" data-href="okulul.php"><label>Ürün listesi</label></a>
    </div>

    <div id="okulmll">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289621&url=okulml.php" data-href="okulml.php"><label>Menü listesi</label></a>
    </div>

    <div id="okulcl">
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=129289621&url=egoldcikis.php" data-href="egoldcikis.php"><label>Çıkış</label></a>
    </div>

    <div id="okulmdl">
    <label>Menü değiştir</label>
    </div>

    <style type="text/css">

    #okulmll{

    position: absolute;
    top: 250px;
    left: 50px;

    }

    input.iptalb8{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 1135px;

    }

    input.tamamb8{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 350px;

    }

    input.iptalb7{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 1135px;

    }

    input.tamamb7{

    position: absolute;
    height: 25px;
    width: 75px;
    top: 600px;
    left: 350px;

    }

    #okulmdl{

    position: absolute;
    top: 125px;
    left: 720px;

    }

    #menusecme1{

    position: absolute;
    width: 750px;
    top: 250px;
    left: 450px;

    }

    #okulmdmal2{

    position: absolute;
    top: 250px;
    left: 350px;

    }

    input.okulmdamat{

    position: absolute;
    width: 750px;
    top: 200px;
    left: 450px;

    }

    #okulmdamal{

    position: absolute;
    top: 200px;
    left: 350px;

    }

    input.okulmdmat{

    position: absolute;
    width: 750px;
    top: 200px;
    left: 450px;

    }

    #okulmdmal{

    position: absolute;
    top: 200px;
    left: 350px;

    }

    #okull{

    position: absolute;
    top: 25px;
    left: 625px;

    }

    #okulall{

    position: absolute;
    top: 175px;
    left: 50px;

    }

    #okulkll{

    position: absolute;
    top: 200px;
    left: 50px;

    }

    #okulull{

    position: absolute;
    top: 225px;
    left: 50px;

    }

    #okulcl{

    position: absolute;
    top: 275px;
    left: 50px;

    }

    </style>

    <hr style="position: absolute;top: 75px;width: 1349px;">
    <hr style="width: 1px;height: 545px;position: absolute;left: 200px;top: 75px;" ">

    </body>
    </html>


    Sonuç aynı maalesef.

    bende calisiyor wamp server kur bence.

    Ama onları değiştirmek uzun sürmez mi?




  • 
Sayfa: 1
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.