/ Published in: PHP
هو الكود أنا فاهمه تمام وبعدل عادي وبوصل للنتايج لكن كليبرز وهو بيشرح شغال يعمل في جداول .. وعايز يخلي التعديل في نفس صفحة العرض لذلك بيحط حاجات عجيبة علشان يعمل اللي في دماغه
أنا خليت التعديل في ملف لوحده بس مش راضي يثبت في مخي خالص
Expand |
Embed | Plain Text
<?php /* CREATE TABLE `addnew` ( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `author` VARCHAR( 255 ) NOT NULL , `title` VARCHAR( 255 ) NOT NULL , `content` LONGTEXT NOT NULL ) ENGINE = MYISAM ; */ $id = $_POST['id']; $a = $_POST['author']; $t = $_POST['title']; $c = $_POST['content']; author='$a', title='$t', content='$c' echo "<h2>Update is Done</h2>"; } } echo " <form action='".$_SERVER["PHP_SELF"]."' method='post'> Author : <input type='text' name='author' value='".$re['author']."' /> Title : <input type='text' name='title' value='".$re['title']."' /> <br/><br/> Content : <textarea name='content'>".$re['content']."</textarea><br/> <br/> <input type='submit' value='Save' /> <input type='hidden' name='id' value='".$gid."' /> <input type='hidden' name='edit' value='news' /> </form> "; ?>
You need to login to post a comment.
