Mendoan CMS (cms core mini)
Mumet nyari kerja gak nemu-nemu aku iseng aja bikin CMS mini, sempurna atau gak yang penting udah berusaha bikin, dari pada klontang klantung gak jelas :D . Untuk admin panel memang belum bisa di akses pada link pengaturan dan belum aku tambahkan plugin manager. Namun untuk editing postingan sudah menggunakan FCKeditor dan sudah terdapat file manager serta sudah terpasang plugin syntaxhiglighter.
Mendoan CMS menggunakan php dan mysql sebagai media penyimpanan data.
Bagi yang berminat menggunakan atau sekedar ingin melihat source nya bisa di download di sini.
Onkeypress Javascript Tombol Enter
Onkeypress Javascript tombol enter.
Onkeypress pada javascript digunakan untuk menghandel ketika/setelah kita menekan salah satu tombol pada keybord, misal pada saat kita menekan tombol enter pada suatu input box.
Showing the mysql query results without pressing the button
Example : We write the ID of data and will automatic showing the Name who have the ID without pressing button.
Steps to make is:
1. Create your index.html file and the code is:
<html><head><script type="text/javascript" src="sadam.js"></script></head><body> <form id="form1" name="form1" method="post" action=""> <label>ID <input type="text" name="nimnya" id="nimnya" onkeyup="carinama()" onkeydown="carinama()" /> </label> <p> <label>NAME : <span id="namanya">Input Nim to get name</span> </label> </p> </form> </body></html>
2. Create a javascript file with sadam.js name (in this case I use sadam.js: D) and fill it with this code:
Php Autocomplete Text Box With Jquery-1.4.2 And Mysql
Php Autocomplete Text Box With Jquery-1.4.2 And Mysql. It’s very cool, we can create the auto suggest text box like google search text box with JQuery 1.4.2. Auto suggest will show when we typing on the text box, And data in auto suggest is result from mysql query. Simple but need to be focus when you build it :D .
The first step to create it is :
Create file index.html and fill with this code :