Skip to content
  • Register
  • Login

LT BYTES

Learn Tech Bytes

  • Home
  • AWS
  • PHP

All

Posted inAll

Php frameworks

by SuryaFebruary 15, 2011December 4, 20230

List of Popular Frameworks In Php Laravel Zend(Laminas) Codeigniter Symfony Kohana Cakephp Yii Phalcon FuelPHP

Posted inAll

concrete5 cms block creation error

by SuryaFebruary 13, 2011December 4, 20230

One common error is(block installed successfully but while adding in frontend we will get an error). When we are using controller name with Two words … concrete5 cms block creation errorRead more

Posted inAll

public static void main string args in java

by SuryaFebruary 13, 2011December 4, 20230

public: This method is public because it is accessible to JVM, for execution. static: main method is called with out creating an object for the … public static void main string args in javaRead more

Posted inAll

Loading image using javascript

by SuryaFebruary 13, 2011December 4, 20230

Steps to show loading image using javascript: 1) Create simple div tag with some Id. Example: “loading” 2) Change the content of div using innerHTML … Loading image using javascriptRead more

Posted inAll / Javascript

disable and enable form element using jquery

by SuryaJanuary 29, 2011December 4, 20230

Using Id: To Disable the Element: jQuery(‘#id’).attr(‘disabled’,’disabled’); //Here id is form element id To Enable the Element: jQuery(‘#id’).removeAttr(“disabled”); Using Name: To Disable the Element: jQuery(‘input[name=”elementname”]’).attr(‘disabled’,’disabled’); … disable and enable form element using jqueryRead more

Posted inAll / Javascript

Get the text box value using jquery

by SuryaJanuary 22, 2011December 4, 20230

By using textboxid: jQuery(‘#texboxid’).val(); By using name: jQuery(‘input[name=”textboxname”]’).val();

Posted inAll / Php

Get hours, minutes and second of the current time using date function in php

by SuryaJanuary 15, 2011December 4, 20230

<?php $hours = date(“H”); $minutes = date(“i”); $seconds = date(“s”); ?>

Posted inAll / Sql

get number of days between two given dates using MySQL

by SuryaJanuary 15, 2011December 4, 20230

SELECT DATEDIFF(“2007-03-07”, “2007-03-01”); // For static dates SELECT DATEDIFF(ColumnA, ColumnB); // For Table column based dates

Posted inAll / Php

Difference between include and require

by SuryaJanuary 15, 2011December 4, 20230

require(): It will cause a fatal error and halt the execution of the script if the file not found. include(): If the file not found … Difference between include and requireRead more

Posted inAll / Sql

get number of records count in mysql

by SuryaJanuary 15, 2011December 4, 20230

To get the records count of table in mysql: SELECT COUNT(‘fieldname’) AS RecordsCount FROM TableName; (OR) SELECT COUNT(*) FROM TableName;

Posts navigation

Previous 1 2 3 4 5 Next

Recent Posts

  • Deploying AWS Lambda with Docker & Serverless Framework
  • Create and Update SNS Subscription Filter Policy using Python Boto3
  • Turn on errors in PHP
  • Php coding standards
  • WordPress plugin to save contact information to database

Recent Comments

No comments to show.

Archives

  • February 2025
  • January 2024
  • December 2023
  • March 2013
  • December 2012
  • April 2012
  • August 2011
  • April 2011
  • February 2011
  • January 2011
  • October 2010
  • July 2010
  • June 2010
  • January 2010
  • December 2009
  • November 2009
  • October 2009

Categories

  • All
  • AWS
  • Javascript
  • Joomla
  • Php
  • Python
  • Sql
  • Uncategorized
  • Wordpress
Copyright © 2025 LT BYTES.
Powered by WordPress and BNM.
  • Home
  • AWS
  • PHP