there have greate examples for tiny scrollbar realy
mysql database insert query
mysql database insert query
<?php
set_time_limit(0);
$dbconn = mysql_connect('localhost','username','password');
mysql_select_db('DBname',$dbconn);
$file = 'hospital.sql';
if($fp = file_get_contents($file)) {
$var_array = explode(';',$fp);
foreach($var_array as $value) {
mysql_query($value.';',$dbconn);
}
}
?>
<?php
set_time_limit(0);
$dbconn = mysql_connect('localhost','username','password');
mysql_select_db('DBname',$dbconn);
$file = 'hospital.sql';
if($fp = file_get_contents($file)) {
$var_array = explode(';',$fp);
foreach($var_array as $value) {
mysql_query($value.';',$dbconn);
}
}
?>
Jquery src change with fadin and out
Jquery src change with fadin and out
$(".fadeamim").fadeOut(2500, function(){ $(".fadeamim").attr('src',preLoad[j].src ); }).fadeIn(2500);
realy this is very very help full
$(".fadeamim").fadeOut(2500, function(){ $(".fadeamim").attr('src',preLoad[j].src ); }).fadeIn(2500);
realy this is very very help full
this css font attachment method is so much use full this is supported all brouser like IE7,8,9,10 ,mozilla , Chrom, safary etc.
CSS
--------------------------------------------------------------------------------
this css font attachment method is so much use full this is supported all brouser
like IE7,8,9,10 ,mozilla , Chrom, safary etc.
@font-face
{
font-family: Din-font;
src: url('font.ttf'),
url('font.eot'); /* IE9+ */
}
--------------------------------------------------------------------------------
this css font attachment method is so much use full this is supported all brouser
like IE7,8,9,10 ,mozilla , Chrom, safary etc.
@font-face
{
font-family: Din-font;
src: url('font.ttf'),
url('font.eot'); /* IE9+ */
}
Subscribe to:
Posts (Atom)
How to check if Magento is running in production mode or developer mode
If you want to know. your Magento 2 website is running on which environment you can run below command on terminal and very easily you can kn...
Popular Posts
-
How to load external es6 script module in Magento 2 Ecommerce To add a script with type="module" in Magento, you can follow the a...
-
Introduction: When working with databases, it's often essential to track the timestamp of various operations such as record creation o...
-
Introduction: In Magento 2, the db_schema.xml file plays a crucial role in defining the database structure for your module. One common req...