Hr

Hr CSS Style – Change Color Border Style

The HTML <hr> element represents a Horizontal-rule and it is used for page break via line. It creates horizontal line, which makes someone to understand that there is an end of the page or a sentence break. We can also design the hr (horizontal-rule) tag to create attractive user-interface. In this tutorial, we are going to design different and styling hr tag, using images and text. It's simple and easy to use where each style code is different from other style. You can also refer live demo or download the Script file. Extract the downloaded files, save it and run index.html on browser Below are the different...
Keep Reading

PHP PDO Insert Data Into Database

PHP Data Objects ,PDO is a PHP extension to use PHP'S database connections. It is a consistent way to access databases. Using PDO we can make a code for different types of database and platform as well. Why PDO  use? Use by many databases : PDO use by numbers of database system supported by PHP. OOPS : PDO use object-oriented methodology. Write one run anywhere  : Using PDO just write one code and run anywhere means you don't need to write code for each database. Speed : PDO written in compiled language so speed is good. Databases does PDO support : MYSQL (http://www.mysql.com/):...
Keep Reading

PHP MySQLi Insert Data Into Database

PHP MySQLi, where i denotes to "Improved". Using MySQLi function you can access the database server. Mysqli is the enhanced version of Mysql.  In this tutorial we are demonstrate how we can use MySQLi to access mysql database server. Before accessing the MySQL database.First we need to connect them using MYSQLi . Connection to MySQL Using MySQLi Here we are using MySQLi Object-Oriented method to Open a Connection to MySQL. Syntax : [php]<?php $servername = "localhost"; $username = "username"; $password = "password"; $dbname = "database"; // Create connection $conn = new mysqli($servername, $username, $password,$dbname); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error);...
Keep Reading

Include CSS File Using @import

The @import is a rule allowing you to import one style sheet into another.When you are working on a complex website and stuck to managed many stylesheet, then @import is very helpful .The @import rule is another way of loading a CSS file. In this tutorial we are going to explain,How we can use @import  for importing one style sheet into another. Loading a CSS file using @import you can do this by two ways.The simplest way is load CSS file within the header of your document, like so: @import with in header Here we are importing style.css file in index.html header section.  ...
Keep Reading

CSS Stylish Search Box

A search box frequently used by websites to make your website user friendly. By the search box user can search the content. Adding stylish search box on your website.This will help searching data content and also make a website appear professional. In this tutorial we are going to explain how you can make stylish search box using only HTML and CSS. Here we are demonstrate three types of stylish search box with code and demo as well. You can also refer our live demo or download the Script file. Extract the downloaded files, save it and run index.html on browser If you...
Keep Reading

jQuery CSS Progress Bar

ProgressBar is a graphical  presentation  which shows some progress. It shows a bar representing the completing of the task. Normally the ProgresBar do not display the amount of completion in numbers. If we want, we can display it in the Text or as graphical format. In this tutorial we are going to explain how we can make a simple and stylish progress bar using jQuery and HTML/css. Here we are explaining five types of progress. Circular Progress Bar Steps Progress Bar Linear Progress Bar Ball Progress Bar Loader Progress Bar  You can also refer our live demo or download the Script...
Keep Reading

A Cheaper Constant Contact Alternative : MailGet Bolt

A good email marketing service can reduce half of your efforts of successfully delivering your product or service to your prospects. A service provider that matches your requirements like your budget, features, and so on. Presently. there are many email marketing services that sound reliable but they are very expensive at the same time. Constant Contact is also one of them. Its cost gets higher with your growing subscribers list. Now, if you are looking for an alternative to Constant Contact than MailGet Bolt can be the one that suits your requirements. Below are some consideration factors that explain, why to choose MailGet Bolt over Constant Contact : MailGet...
Keep Reading

CodeIgniter : Create Own Helper

The helper is used as a function library, by this we can just load a helper class in the controller or view as well. CodeIgniter provide different types of helper class, such as url_helper, captcha_helper ,email_helper etc. They all are located in system/helper. In this tutorial we are going to explain how you can create your own helper class. Here we have created helper called imagetodata. By using the function, we can convert image to data Step to creating imagetodata helper Create a new file called  imagetodata inside application/helper folder. Define function here. Load that helper in controller or even you can load...
Keep Reading

CodeIgniter : Remember Me Login with Example

In this tutorial, we will learn to active remember me checkbox  while login a page. This concept is basically used when we want to remain login on a page and on sudden system failure or shut down and browser failure. In such situation, we store remember me value submitted by users in session and use it in different pages of our application until users get logout.  You can also refer our live demo or download the Script file. Extract the downloaded files, save it in your local server and run it using given path  [code]http://localhost/ci_remember_me/[/code] To create a login form...
Keep Reading

CodeIgniter : Resolve “MySQL Too Many Connection Errors”

In this tutorial we are going to see  "How one can solve too many connection problem in mysql using CodeIgniter".  This error usually occurs if your scripts open persistent connections, which aren't closed even if the script terminates, this means that all available connections are in use by other clients. Now Exactly what are persistent connections..??  Persistent connections are links that do not close when the execution of your script ends. When a persistent connection is requested, PHP checks if there's already an identical persistent connection (that remained open from earlier) - and if it exists, it uses it. If it does...
Keep Reading

Codeigniter URL Routing, Suffix & Enable Query String

In this tutorial, I've tried to give an overview with basic code examples on URL Routing, URL Suffix and URL Enabled Query String. Now the Question is Why it is Required..?? Through CodeIgniter URL Routing a user can present their web page in a more beneficial way, so as to make more sense to visitors and to search engines as well. By default, URLs in CodeIgniter are designed to be search-engine and human friendly. Through this user actually knows what contents a page contains just by checking the URL in the browser's address bar. Hence, URL Routing is a technique which converts these SEO friendly urls to...
Keep Reading

CodeIgniter Convert Query to Json & Insert Into Database

In this tutorial, we will learn to convert CodeIgniter query to json and also to insert them in our database. It is difficult to store an array in database which contains a lots of user data. We will have to make a lots of indexes in array in order to store them in database. In such situation, json is very helpful. Using json function we can convert array values into json string and store them easily in database. Whenever we need the data, we can again convert  json data back into array. Syntax : [php]json_encode();     // Convert array into...
Keep Reading

Easy & Affordable AWeber Alternative : MailGet Bolt

AWeber is considered one of the best email marketing services. But, due to its high price, and old user interface, people are looking for its alternative. Since emails are never going to be pointless in terms of marketing and sales. It is required to cope up with new ideas and advanced features. However, there are numerous software in the market, serving the same purpose as Aweber or even better. That is why, we have come up with an AWeber alternative "MailGet Bolt", which offers the lower price and great features. It is a smart email building solution, due to its...
Keep Reading

CodeIgniter: Language Class

In this tutorial, we will learn how to use CodeIgniter's Language Class. Using this class we can create application in any languages of our choice. CodeIgniter Language class provides various functions which will help us to retrieve various language files and the line of text present in the file. This class is basically used for the purpose of multi-language internationalization. If you want to know more about CodeIgniter Session, you can follow our blog posts Session In CodeIgniter and CodeIgniter Simple Login With Sessions. We will use CodeIgniter Session and CodeIgniter Language class in building the contact form through which user can view form...
Keep Reading

CodeIgniter Template : Adding Header, Footer and Dynamic Content

CodeIgniter MVC work on a separate layer, applying MVC pattern, it is recommended that header, footer, side menu bar should be separate. Benefits of using these architectures are. If your website contains multiple pages and all have a header, footer and menu bar and if you want to make some changes on header so you do not need to apply changes on every page. Just go to your header page for changes.Now that changes will apply automatically on every page. In this tutorial we are going to explain how we can create a header, footer and sidebar menu ,three different...
Keep Reading

Email Marketing … 100X Cheaper

MailGet is an Amazon SES Email Client that allows you to send email through Amazon’s Email Infrastructure. MailGet is super affordable at-least 90% cheaper than any other email marketing solution on web. It comes with integrated email builder to build beautiful email newsletter. You can import your contacts, manage them and start sending emails in no time.
Keep Reading

CodeIgniter URI Segment

Using CodeIgniter URL class's function, we can retrieve information from URI string. In this tutorial we are going to explain how we can use the URI class in CodeIgniter to retrieve information from URI segment. Note: This class is initialized automatically so we do need to do it manually. $this->uri->segment(n) Segment function allow you to retrieve a specific segment form URI string where n is a segment number.Segments are numbered from left to right.For example,if  your URI like. By the above example URI segment function give result by n parameter. [php]echo $this->uri->segment(1);//it will print blog echo $this->uri->segment(2);//it will print language echo $this->uri->segment(3);//it will print php...
Keep Reading

A Cheaper & Better MailChimp Alternative : MailGet Bolt

No matter what a person does throughout his day, but certainly checks his mailbox once in a day. Now,, what could be better for you if he finds your product or service right there saying hello to him..!! Email marketing stands tall today, businesses need it and are benefited by it too. And for marketing successfully through emails, they need a service that is cheap & reliable, has high deliverability with minimum bounces and allows real-time tracking. Now, there are numerous email marketing services claiming all the above-mentioned features, but it will be a no wise man's idea to use them without comparing. This particular blog...
Keep Reading
‹ 1 … 97 98 99 100 101 … 109 ›
Our Solution
  • Subscription Billing
  • Form Builder
  • Email Marketing
  • Email List Cleaning
Connect With Us
  • Contact Us
  • Careers
Company
  • About Us
  • Privacy Policy
  • Terms and Conditions
  • Affiliate
  • Branding
Resources
  • Blog
  • Blog Categories
  • FormGet Features
  • Email Templates
  • Form Templates
Hr
Analytics
Hr

FormGet © 2021. All rights reserved.

Made with love for you