Research and Development work on PHP, MYSQ,JQuery,Angular Js,React Native,Laravel,Wordpress,Magento,Joomla
Tuesday, June 4, 2013
PHP Email Validation
<?php
$email_a = 'joe@example.coddddm';
$email_b = 'bogus';
if (filter_var($email_a, FILTER_VALIDATE_EMAIL)) {
echo "This (email_a) email address is considered valid.";
}
if (filter_var($email_b, FILTER_VALIDATE_EMAIL)) {
echo "This (email_b) email address is considered valid.";
}
?>
$email_a = 'joe@example.coddddm';
$email_b = 'bogus';
if (filter_var($email_a, FILTER_VALIDATE_EMAIL)) {
echo "This (email_a) email address is considered valid.";
}
if (filter_var($email_b, FILTER_VALIDATE_EMAIL)) {
echo "This (email_b) email address is considered valid.";
}
?>
Friday, May 31, 2013
Jquery form submit and image upload through ajax
<a href="http://docs.google.com/file/d/0B4nDLq9K61UvaFhmQk15TEhwVkU/edit?usp=drive_web" target="_blank" class="fileitem-linked" rel="noreferrer">jquery-image-upload.zip</a>
CSS Hack for Google Chrome,Safari,ie7,ie8
@media screen and (-webkit-min-device-pixel-ratio:0)
{
.classname{ background:#ccc; } /*It will works on Google chrome and safari */
}
IE7
.classname{*background:#ccc; } /*It will works on IE7 */
.classname{background:#ccc \9; } /*It will works on IE8 */
{
.classname{ background:#ccc; } /*It will works on Google chrome and safari */
}
IE7
.classname{*background:#ccc; } /*It will works on IE7 */
.classname{background:#ccc \9; } /*It will works on IE8 */
Use Mini-Login in Header or anywhere you want!
add in app/design/frontend/default/default/layout/page.xml :
<block type="customer/form_login" name="mini_login" template="customer/form/mini.login.phtml" />
Then, you just have to call the module : <?php echo $this->getChildHtml('mini_login') ?>
<block type="customer/form_login" name="mini_login" template="customer/form/mini.login.phtml" />
Then, you just have to call the module : <?php echo $this->getChildHtml('mini_login') ?>
Display total weight of cart in the magento
$items = Mage::getSingleton('checkout/session')->getQuote()->getAllItems();
$weight = 0;
foreach($items as $item) {
$weight += ($item->getWeight() * $item->getQty()) ;
}
echo $weight;
$weight = 0;
foreach($items as $item) {
$weight += ($item->getWeight() * $item->getQty()) ;
}
echo $weight;
How to Set Registration Block on Home Page ?
{{block type="Mage_Customer_Block_Form_Register" template="customer/form/register.phtml"}}
Thursday, May 23, 2013
Tuesday, May 21, 2013
Wednesday, May 1, 2013
Monday, April 29, 2013
PHP Script to create cache
1). Create Folder Name "cache";
2).
ob_start();
$strUrl = "http://".$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
if(file_exists("cache/".basename($strUrl)))
{
require_once("cache/".basename($strUrl));
}
else
{
echo "This is home page content......................";
}
$fp = fopen("cache/".basename($strUrl),"w");
fwrite($fp, ob_get_contents());
fclose($fp);
ob_end_flush();
2).
ob_start();
$strUrl = "http://".$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
if(file_exists("cache/".basename($strUrl)))
{
require_once("cache/".basename($strUrl));
}
else
{
echo "This is home page content......................";
}
$fp = fopen("cache/".basename($strUrl),"w");
fwrite($fp, ob_get_contents());
fclose($fp);
ob_end_flush();
How to Print a part of webpage using Javascript
<div dir="ltr" style="text-align: left;" trbidi="on">
<script type="text/javascript">
function printDiv()
{
var divToPrint=document.getEelementById('areaToPrint');
newWin= window.open("");
newWin.document.write(divToPrint.outerHTML);
newWin.print();
newWin.close();
}
</script>
<div id="areaToPrint">
The text you want to print or the content you want to print
</div>
</div>
Subscribe to:
Posts (Atom)