A PHP Error was encountered

Severity: Warning

Message: Attempt to read property "meta_title" on null

Filename: controllers/Index.php

Line Number: 277

Backtrace:

File: /var/www/html/application/controllers/Index.php
Line: 277
Function: _error_handler

File: /var/www/html/index.php
Line: 315
Function: require_once

A PHP Error was encountered

Severity: Warning

Message: Attempt to read property "meta_description" on null

Filename: controllers/Index.php

Line Number: 278

Backtrace:

File: /var/www/html/application/controllers/Index.php
Line: 278
Function: _error_handler

File: /var/www/html/index.php
Line: 315
Function: require_once

A PHP Error was encountered

Severity: Warning

Message: Attempt to read property "meta_keywords" on null

Filename: controllers/Index.php

Line Number: 279

Backtrace:

File: /var/www/html/application/controllers/Index.php
Line: 279
Function: _error_handler

File: /var/www/html/index.php
Line: 315
Function: require_once

A PHP Error was encountered

Severity: Warning

Message: Attempt to read property "canonical" on null

Filename: controllers/Index.php

Line Number: 280

Backtrace:

File: /var/www/html/application/controllers/Index.php
Line: 280
Function: _error_handler

File: /var/www/html/index.php
Line: 315
Function: require_once

A PHP Error was encountered

Severity: Warning

Message: Attempt to read property "b_title" on null

Filename: controllers/Index.php

Line Number: 282

Backtrace:

File: /var/www/html/application/controllers/Index.php
Line: 282
Function: _error_handler

File: /var/www/html/index.php
Line: 315
Function: require_once

A PHP Error was encountered

Severity: Warning

Message: Attempt to read property "b_id" on null

Filename: controllers/Index.php

Line Number: 284

Backtrace:

File: /var/www/html/application/controllers/Index.php
Line: 284
Function: _error_handler

File: /var/www/html/index.php
Line: 315
Function: require_once

Call us to book a Home Collection.

Order now & get your sample collected today

logo

Blog Details

function validate_phone(phone_number) { var count = 0; if($.trim(phone_number) =='') { count++; } if(!($.isNumeric(phone_number))) { count++; } if( (phone_number.length < 10) || (phone_number.length > 12) ) { count++; } if(count==0) { return true; } else { return false; } } function validate_email(emailAddress) { if($.trim(emailAddress) == '') { // return false; return true; } else { var pattern = new RegExp(/^(("[\w-\s]+")|([\w-]+(?:\.[\w-]+)*)|("[\w-\s]+")([\w-]+(?:\.[\w-]+)*))(@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][0-9]\.|1[0-9]{2}\.|[0-9]{1,2}\.))((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\.){2}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\]?$)/i); return pattern.test(emailAddress); } }