Jump to content
xisto Community

asglu

Members
  • Content Count

    13
  • Joined

  • Last visited

  1. What is aroma? Pure fragrances are used for healing. Aromas are commonly used in the forms of incense flower essences, and essential oils. Other methods of aromatherapy include pure scented candles, soaps, and sachets. Aromas are most effective when pure (i.e., not diluted with chemical substances). They are used externally, and unless mixed with a diluting or base oil, some oils burn the skin. If taken internally, the mucus membranes would be harmed. They should not be placed too close to the eyes or any bodily orifice. Some Useful Aromas in barkets indian names are included Basil: (Tulsi) Uses: Cleanses mind, phlegm, colon, purifies air, reduces fever and viruses, removes Ap?na V?yu (downward air), increases devotion and intuition Camphor: (Karpur) Uses: Opens the mind, senses, lungs, increases perception and meditation, alleviates headaches and arthritis, can be used for p?ja (devotional ritual), calms hysteria, neuralgia, and other nervous ailments; insect repellent. External—sprains, inflammations, rheumatism. Precaution—large doses are toxic Cedar: (Devadaru) Uses: Diabetes, arthritis, edema, air cleanser Eucalyptus: Uses: Opens the mind, senses, lungs, removes phlegm and alleviates depression, cleanses negative psychic thoughts Frankincense: Uses: Heart, head, blood, and nerve cleanser; pain reliever, strengthens joints, calms mind, increases faith, virtue, detachment, and devotion, removes negative psychic thoughts Gardenia: Uses: Cleanses the blood, kidneys, heart, fevers, and infections (including uterine) Ginger: (Sunta) Uses: Colds, flus, headache, lung congestion, joint and muscle pain, improves pulse and appetite, enhances joy and creativity Jasmine: (Mallika) Uses: Heals breast and uterine infections, also heals cancer (especially lymph), strengthens a woman’s reproductive system and makes her more attractive removes depression Lavender: (Dharu - H) Uses: Calms emotions and nerves (good for hyperactive children), PMS Lily: (Kumuda) Uses: Calms heart, nerves, and emotions (irritability, anxiety, insomnia), dry cough, tonic for stomach and lungs, increases faith, devotion, and virtue Lotus: (Padma, hatapatra) Uses: Calms mind and heart, effects deep sleep, increases love, faith, devotion, compassion, builds ojas (i.e., strengthens the reproductive system and nerves), is antiallergenic, calms nerves, relieves spasms. It is the symbol of Self-Realization Mint: (Peppermint: Paparminta- H; Spearmint: Pahadi pudina - H) Uses: Clears mind, head, and sinuses ************************Hope my this post will be helpful for you***************************
  2. make an index.php copy and paste this code <?php$db_host = "localhost";$db_user = "root";$db_pass = "";$db_name = "test";$dbc = mysql_connect($db_host, $db_user, $db_pass);$dbs = mysql_select_db($db_name);$tm = time();$timeout = $tm - (30*60); if($_SERVER["REMOTE_ADDR"]){$ip=$_SERVER["REMOTE_ADDR"];}else{$ip=$_SERVER["HTTP_X_FORWARDED_FOR"];}$brws = explode("(",$_SERVER["HTTP_USER_AGENT"]);$browser = $brws[0];mysql_query("DELETE FROM guest WHERE actvtime <'".$timeout."'");mysql_query("INSERT INTO guest SET time='".$tm."', ip='".$ip."', browser='".$browser."'");$count = mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM guest"));mysql_close();echo "<br/><a href=\"online.php\">Users Online($count[0])</a><br/>"; ?> the make online.php .copy and paste this code in it <?php$db_host = "localhost";$db_user = "root";$db_pass = "";$db_name = "test";$dbc = mysql_connect($db_host, $db_user, $db_pass);$dbs = mysql_select_db($db_name);$result = mysql_query("SELECT time ,ip ,browser FROM guest ORDER BY time ")or die(mysql_error());while($row = mysql_fetch_array($result)){echo "$row[1] $row[2] ";$newtime =$row[0]+(0 *60 *60); echo "<b>".date("D d M y - H:i:s",$newtime)."</b><br/>"; echo "------------<br />";mysql_close();}?> SQL table CREATE TABLE `guest` ( `time` int(15) NOT NULL default '0', `ip` varchar(50) NOT NULL default '', `browser` varchar(50) NOT NULL default '', PRIMARY KEY (`time`))ENGINE=MyISAM DEFAULT CHARSET=latin1;
  3. <?php function navigationbar($start_number = 0, $items_per_page = 50, $count) { // Creates a navigation bar $current_page = $_SERVER["PHP_SELF"]; if (($start_number < 0) || (! is_numeric($start_number))) { $start_number = 0; } $navbar = ""; $prev_navbar = ""; $next_navbar = ""; if ($count > $items_per_page) { $nav_count = 0; $page_count = 1; $nav_passed = false; while ($nav_count < $count) { // Are we at the current page position? if (($start_number <= $nav_count) && ($nav_passed != true)) { $navbar .= "<b><a href=\"$current_page?start=$nav_count\"> [$page_count] </a></b>"; $nav_passed = true; // Do we need a "prev" button? if ($start_number != 0) { $prevnumber = $nav_count - $items_per_page; if ($prevnumber < 1) { $prevnumber = 0; } $prev_navbar = "<a href=\"$current_page?start=$prevnumber\"> <<Prev - </a>"; } $nextnumber = $items_per_page + $nav_count; // Do we need a "next" button? if ($nextnumber < $count) { $next_navbar = "<a href=\" $current_page?start=$nextnumber\"> - Next>> </a><br>"; } } else { // Print normally. $navbar .= "<a href=\"$current_page?start=$nav_count\"> [$page_count] </a>"; } $nav_count += $items_per_page; $page_count++; } $navbar = $prev_navbar . $navbar . $next_navbar; return $navbar; }} ?> I added comment to make you understand about this PHP function
  4. phpbb is an opensource forum script,but I like phpbb or phpbb2 much than phpbb3,because phpbb3 does not have forum category .You can use mybb its an open source script it has a nice shoutbox script as a plug-in and who said you that ipb has less mods than vb? Ipb is the most edited forum script as far as I know, all thing needed is to manage those. just a little example. compare between ipb's popup inbox and vb's popup inbox
  5. easy thing here is an example <?php$db_host = "";///// put your host name$db_user = "";///// put your database username$db_pass = "";////// put your database passowrd if it is passworded$db_name = "";///// put your database name$dbc = mysql_connect($db_host, $db_user, $db_pass);///mysql connetion$dbs = mysql_select_db($db_name);/seleting mysql db$result = mysql_query("SELECT album,genre FROM mysql_table_name ORDER BY time ")or die(mysql_error());while($row = mysql_fetch_array($result)){echo "$row[0] $row[1] "; echo "------------<br />";}?> Like this use multiple arrayed argument and use echo "<a href>..........,</a>"; to link it
  6. Notice from rvalkass: Anything copied must have Quote tags around it. Readme ~ Rules ~ AUP
  7. asglu

    Mysql

    here is the basic and simple php script to connect mysql database <?php$server = "";//database server name $database = "";//database name$username = "";//data base user name$password = "";//database password$connection = mysql_connect($server,$username,$password);//to connect the msql servermysql_select_db($database,$connection);//to select data basemysql_close();//close the mysql server after use?>
  8. So we all should think about it. Notice from electriic ink: Cut and paste from wikipedia quoted. http://en.wikipedia.org/wiki/Global_warming
  9. Windows vista OS is the worst OS I have ever seen.Because1.It requires minimum 512mb ram,2.It has very less supporting software,3.no scope for openning guest account
  10. Here is my list of great movies1.A Beautiful mind2.Ghost ship3.Ring 1,24.Twelve Monkeys5.Austin Power's series
  11. I have been using glasses for 5 years.I have myopia.Thats why im using minus powered glasses.now my glass power is 1.25/1.5, 6/6 and it has been fixing for last 2 years.Previously i was told to use cylindrical lenses,but now im told to use uni focal lense
  12. My waist was 31 inches,i had not been eating my breakfast for 3months now my waist is 28 inches.Though ts not a good way to follow for who has gastric,ulcer.
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.