Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

How to delete cache in magento

We can remove the cache from the root folder of the magento in the root path by deleting the files in cache folder of the path /opt/lampp/htdocs/magento/var/cache The another way is to delete magento cache by usign magento admin panel as : 1) Go t

How to prevent model box to close box by screen click ?

If your model box getting close by some where click on screen outside of your popup box. You need add following attribute in your model box: data-backdrop="static" data-keyboard="false" your model box will appear like this <div class="modal fa

How to make conversion of base64 to image using PHP

Hello Reader's If you have some string in base64 and you need them to convert into image file, Then by using PHP you can do this as follows:- function base64Tojpeg($base64_string, $output_file) { $ifp = fopen($output_file, "wb"); $data = explo

How to use Select query in ZEND Framework

Hello Guys, If you are looking to use "Select" mysql query in ZEND Framework. Please use the below code:: $dbObj = Zend_Db_Table::getDefaultAdapter(); $select = $this->select(); $select->from(array('users'),array('count(user_id) as id')); $se

Reverse the string without array_reverse function

Welcome to FindNerd. Today we are going to tell the way how we can reverse a string without using array_reverse function in php. Please have a look. $string = "FINDNERD"; $count=array_sum(count_chars($string)); for($i=$count -1 ;$i>=0;$i--){

How to make a view transparent

Below is the solutions to make transparent view. 1. Using android predefined color android:background="@android:color/transparent" 2. Create own color <color name="transparent_color">#80000000</color> 3. Dynamically make trans

QueryString Value in Javascript

Hi All, Here is quick way to get query string value in javascript: function getParameterByName(name) { name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"), results

Jquery animate() method

Hello Readers, The jQuery animate() method is used to create custom animations. If you want to create some animation effect in your HTML, then you can use jQuery .animate() method for the same. We use following syntax for create animation. Syntax:

How to use page redirection in Zend Framework

Hello Friends, If you are looking to use page redirection in zend framework. Like as you know we always need to redirect our web-page from one page to another webpage for example after successful record insertion in you always wants to redirect your

How can we prevent SQL-injection in PHP?

Hello Readers , For preventing SQL injection we can do by two ways : 1- > Escaping the special characters in your post or get variables , or 2-> By using a parameterized query. Both would protect you from SQL injection. Example : $uns

1 250 949
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: