IPoly Home
Programming Tips/Tricks And Help Desk - jCalendar: A jQuery Based Calendar Goes The Drupal Way for date type fields jstools drupal5
Posted:Nov 15, 2008 03:11 -Jscalender module come with Jstools package in drupal 5 you can download drupal jstools package from the drupal.org site.Jscalender uses the jsCalendar javascript library, like using a special CSS class called via #attribute in the form element array to convert textfields into jcalendar enabled... - ALTER table command mysql sql database manipulation adding new column drop column index consrtaint
Posted:Nov 14, 2008 19:55 -ALTER TABLE allows you to change the structure of an existing table. For example, you can add or delete columns, create indexes, change the type of existing columns, or rename columns or the table itself.You can use ALTER TABLE to modify the structure of a table that has not been added to a database... - phonebook example in php mysql insert delete confirm basic demo
Posted:Nov 13, 2008 11:48 -This is a very basic example of php/mysql.We used to make use of mysql database and a php file for getting this done.To run this code you can first create database as provided in sql here and after creating database run this code... - Preventing MySQL Injection attacks with good PHP code- Using PHP for preventing MySQL injection attacks on your site
Posted:Nov 13, 2008 11:40 -A Mysql injection is attack tried by site visitors/users to get/damage data in databases by taking benefit from poor programming of websites.An injection attack occurs when a visitor to your site types something into a form input with the purpose of changing the outcome of your MySQL query. For example, at a login screen someone may try this type of attack to gain access to a secure area of the website... - configuring mysql after installation installing mysql linux apache
Posted:Nov 12, 2008 20:45 -Once you have installation for mysql ready then you will need to configure security for mysql.
Default Admin user id: root
Default password: blank
The first task is to assign a password:
[prompt]$ mysqladmin -u root password 'new-password'
Note: the following SQL commands will also work:
|