Showing posts from June, 2022
class constant in php

class constant in php

1) canot redeclear 2) it is used to create some const variable  3) const keyword  define a class  4) outside use a va…

Read Now
Arrow function in javascript

Arrow function in javascript

Arrow functionn id the shord hand code of function. In the arrow function you donot need to write function put your con…

Read Now
browser details in php

browser details in php

<?php // print_r($_SERVER);  echo $_SERVER['HTTP_USER_AGENT']; $browser = get_browser(); ?>

Read Now
get user ip in the php

get user ip in the php

<?php // print_r($_SERVER);  echo $_SERVER['REMOTE_ADDR']; ?>

Read Now
Remove special character in php

Remove special character in php

<?php $str = 'today I \'ll learn PHP and the day with awsome.'; $str1 = 'This is a bad command so d…

Read Now
That is All