Skip to content

Logic Bytes

Spread Your Knowledge

  • Home
  • How To
  • PHP
    • Cakephp
    • WordPress
    • CodeIgniter
    • Laravel
  • Python
    • Django
    • Flask
  • Contact
Article

Checking if string contains “HTTP://”

February 3, 2018 Chandan SharmaComment on Checking if string contains “HTTP://”

if( strpos($websiteLink, “http://”) !== false || strpos($websiteLink, “https://”) !== false){ $websiteLink  = $val[‘website’]; }else{ $websiteLink  = ‘http://’.$val[‘website’]; }

Read More
CodeIgniter / PHP

Check whether url contains http:// or https://

February 3, 2018 Chandan SharmaComment on Check whether url contains http:// or https://

Check whether url contains http:// or https:// if your string is a URL you can use parse_url(), which will return the URL components in an …

Read More
JavaScript / JQuery

make slug in javascript or jquery

February 3, 2018 Chandan SharmaComment on make slug in javascript or jquery

** make slug in javascript or jquery:: <script type=”text/javascript”> //Make Slug:: function slugify(text) { return text.toString().toLowerCase() .replace(/\s+/g, ‘-‘)           // Replace spaces …

Read More
Adsense

set max height of adsense responsive ad unit

February 1, 2018 Chandan SharmaComment on set max height of adsense responsive ad unit

set max height of adsense responsive ad unit:: Ad height is (automatically) determined by adsbygoogle.js (that is smart sizing) and if you want to control …

Read More
Curl

Reduce the image file size using PHP

January 31, 2018 Chandan SharmaComment on Reduce the image file size using PHP

Reduce the image file size using PHP: <?php $name = ”; $type = ”; $size = ”; $error = ”;    function compress_image($source_url, $destination_url, $quality) …

Read More
CodeIgniter / PHP

Check if image exists in folder or not currupted in php

December 21, 2017 Chandan SharmaComment on Check if image exists in folder or not currupted in php

Check if image exists in folder or not currupted in php:: $full_path = Full Image path; (Like: ../dd/tmp.jpg) if(!file_exists($full_path)){     //Image Not Available or …

Read More
CodeIgniter / PHP

check if exists in string in php

December 20, 2017 Chandan SharmaComment on check if exists in string in php

check if exists in string in php $a = ‘How are you?’; if (strpos($a, ‘are’) !== false) { echo ‘true’; } OR // returns true …

Read More
CodeIgniter / PHP

Scraping Data in php

December 20, 2017 Chandan SharmaComment on Scraping Data in php

Scraping Data in php:: There is PHP Simple HTML DOM Parser. It’s fast, easy and super flexible.  There is PHP Simple HTML DOM Parser. It’s …

Read More
CodeIgniter / Database / PHP / SQL

update all row in codeigniter

December 19, 2017 Chandan SharmaComment on update all row in codeigniter

update all row in codeigniter   $this->db->update_batch() Generates an update string based on the data you supply, and runs the query. You can either pass …

Read More
CodeIgniter / HTML / JavaScript / JQuery / PHP

Two submit buttons in one form

December 19, 2017 Chandan SharmaComment on Two submit buttons in one form

Two submit buttons in one form:: We can use more than one submit button in a single form. We can use more than one submit …

Read More

Posts navigation

Previous 1 … 8 9 10 … 37 Next

Recent Posts

  • Python Automation Framework-PyUnit (Unittest) Framework
  • Python Automation Framework-TestProject Framework
  • Python Automation Framework-Pytest Framework
  • Python Automation Framework-Lettuce Framework
  • Python Automation Framework-Behave Framework:
  • Top Python Testing Automation Frameworks in 2024
  • Visual Studio Code Keyboard Shortcut Editor
  • Visual Studio Code Keyboard Shortcuts
  • How to Remove Sidebar from Category Pages in WordPress?
  • Best Practices for API Responses

Automation Frameworks Automation Testing Behave Framework Blogger Blogspot Cakephp Cheat Sheets Code Editor CodeIgniter Code Navigation Collaborative Coding Debugging Tools Disable Mouse Right Click Domain Extension Editor Extension Full form Facebook Facebook Video Download IDE JavaScript JQuery Lettuce Framework Microsoft Code Editor Open-Source Code Editor PHP Pytest Framework Python Python-3.x Python Automation Python Automation Frameworks Python Automation Testing Python Pytest Framework Python Testing Frameworks Python TestProject Framework Python Unittest Framework Syntax Highlighting Testing Frameworks Text Editor for Developers Visual Code Visual Code Editor Visual Studio Code Visual Studio Code Cheat Sheet VSCode VSCodeEditor WordPress

Copyright © 2026 Logic Bytes.
Powered by WordPress and PridMag.