The following jquery script can use for get form input values <script type=”text/javascript”>// <![CDATA[ //function to get form values function getformValues() { var fields = $(“:input”).serializeArray(); $(“#smarttips-div”).empty(); jQuery.each(fields, function(i, field){ $(“#smarttips-div”).append(field.value + ” “); }); } //call function to get form values getformValues(); </script>
Author: smarttips
Check PAGE RANK (google page rank) of Websites or website pages
The developers and users are interested to know the page rank of their websites or web pages . Online tools are available to check the ranking of webpages.Can’t easily ranked in Google by hosting the website. After hosting requires continuous works for better results because Google keeps standards for ranking a website. This page ranking approach helps to maintain the standards…
Meta Search engines other than google and yahoo
Popular search engines are Google, yahoo in world. But searching world lot of others are also available. Some of them are topic specified ones. Listed the popular Meta Search Engines: AOL Up Clusty Dogpile Excite Family Friendly Search Fazzle Curry Guide Info Galaxy Blast Hotbot IceRocket Info.com InfoSpace Internet Sleuth Ixquicki ZitoOne Seek Kanoodle Find Some others…
Socialengine select Query wih random() function
$customersTable = Engine_Api::_()->getItemTable(‘customer’); $select = $customersTable->select() ->where(‘enabled = ?’, 1) ->order(‘RAND()’) ->limit(3);
How to send mails using PHP
The following function is using for sending php mail: <?php mail(to, subject, message, headers, parameters); ?> mail is php library function which is using globally t0 – receiving address subject-the subject of mail message- message to send headers-optional, cc,bcc..etc parameters- optional, specifies additional parameters