
Search In
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
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
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
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
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--){
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
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
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:
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
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
