Codeigniter count_all for pagination

work on count_all condition.. you can use below method to find out total number of rows.. public function count_all() { $this->db->select ( 'COUNT(*) AS `numrows`' ); $this->db->where ( array ( 'type' => 'Original' ) ); $query = $this->db->get ( 'story_tbl' ); return $query->row ()->numrows; } ou could also use the built-in num_rows() function... $query = $this->db->where('type', 'original')->get('story_tbl'); return $query->num_rows();...

Matt Cutts Talks SEO for Google

The latest Google Webmaster video features Distinguished Engineer Matt Cutts talking about what webmasters can expect to see in the next few months in terms of SEO for Google, particularly changes combating black hat web spam from many different angles in a variety of areas. Here are nine search and SEO changes webmasters will likely see – although, as always, Cutts warns nothing is set in stone and it should be taken with a grain of salt. 1. Next Generation of Penguin – Penguin 2.0 This update is to try and target more black hat web...

Display Advertising white papers

The rise of mobile smartphones and tablets makes email ever more essential. This study across the thousands of newsletters on the LiveIntent Exchange reveals how to best optimize your email design for ad revenue and engagement. High impact search campaigns are not for the weak-hearted. With new enhanced campaigns, retargeting, display, and mobile options, advertisers have the ability to design and target campaigns with amazing granularity - and with impressive results. Digital advertising has been known to provide marketers with tangible...

Online Marketing-Email Strategy

Email Strategy  help you maximize your email marketing efforts. Learn about deliverability, effective communication, email formatting, tracking ROI . How email strategy can help you meet your marketing objectives through lead generation, lead nurturing, direct sales, and customer retention. The key components of lead generation via email, utilizing calls to action and landing pages, and the advantages of using in-house and third-party email lists. The advantages of building a "drip campaign" into your email strategy to nurture and...

Most Popular Keywords

Google Trends: Allows you to tap into Google's database of searches, to determine which keywords are most popular. View the volume of search queries over time (since 2004) worldwide or by regions and subregions, by languages, categories, and in Google properties such as news, image, or product search. Compare multiple terms, as well. Offers a list of what is trending now in Hot Searches. Google Autocomplete: Google's Autocomplete is a tool that can help round out your research by providing keywords as seen through the searchers...

Download file using curl in php

You would need to feed CURLOPT_URL the full URL to the file. Also if you want to download a file you might want to save it somewhere. Working example: $curl = curl_init(); $file = fopen("ls-lR.gz", 'w'); curl_setopt($curl, CURLOPT_URL, "ftp://ftp.sunet.se/ls-lR.gz"); #input curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_FILE, $file); #output curl_setopt($curl, CURLOPT_USERPWD, "$_FTP[username]:$_FTP[password]"); curl_exec($curl); curl_close($curl); fclose($file); I used the ftp_* functions for ftp, in...

PHP error: Cannot modify header information

You cannot use header() once text has been output to the browser. As your header.php include presumably outputs HTML, header() cannot be used. You can solve this in a couple ways: Move the if statement above the header include (this won't work, as you've indicated in comments that header.php sets the uid session and other vital stuff). Call ob_start() at the top of the script to buffer the output. You can't issue HTTP headers after you have outputted content. unction Redirect($url) { flush(); // Flush the buffer header("Location:...

PHP Curl check for file existence

a PHP program that downloads a pdf from a backend and save to a local drive. $url = "http://wedsite/test.pdf"; $path = "C:\\test.pdf;" downloadAndSave($url,$path); function downloadAndSave($urlS,$pathS) { $fp = fopen($pathS, 'w'); $ch = curl_init($urlS); curl_setopt($ch, CURLOPT_FILE, $fp); $data = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); echo $httpCode; //If 404 is returned, then file is not found. if(strcmp($httpCode,"404") == 1) { ...

PHP: How do I enable error reporting?

he following enables all errors: ini_set('display_errors',1); ini_set('display_startup_errors',1); error_reporting(-1); See http://php.net/manual/en/errorfunc.configuration.php#ini.display-errors http://php.net/manual/en/errorfunc.configuration.php#ini.display-startup-errors http://php.net/manual/en/function.error-reporting.php ...

How to create update or remove symbolic or soft link Linux

Symbolic links , Symlink or Soft link in Unix are very important concept to understand and use in various UNIX operating systems e.g. Linux , Solaris or IBM AIX. Symlinks gives you so much power and flexibility that you can maintain things quite easily.I personally feel that along with find, grep and other UNIX commands, command to create soft link and update soft link i.e. ln -s  is also must for any one working in UNIX machine. Whenever I do scripting or write any UNIX script I always write for symlinks rather than pointing to absolute...