Learn how to remove border from form input on Chrome
If you have to remove border from form input on chrome when focus, you can do that like this input:focus { outline: none; }
Continue Reading →If you have to remove border from form input on chrome when focus, you can do that like this input:focus { outline: none; }
Continue Reading →ffmpeg_animated_gif The ffmpeg_animated_gif object provides methods to create animated gif movies from a series of frames. ffmpeg_animated_gif object methods Method Description $gif = new ffmpeg_animated_gif(String output_file_path, Integer width, Integer height, Integer frame_rate, [Integer loop_count]) create a new ffmpeg_animated_gif object output_file_path – Location in the filesystem where the animated gif will be written. width – Width […]
Continue Reading →ffmpeg_frame The ffmpeg_frame object provides methods to query individual frames from a movie. ffmpeg_frame object methods Method Description $frame = new ffmpeg_frame(Resource gd_image) Create a frame object from a GD image. NOTE: This function will not be available if GD is not enabled. $frame->getWidth() Return the width of the frame. $frame->getHeight() Return the height of […]
Continue Reading →ffmpeg_movie The ffmpeg_movie object provides methods to query and manipulate movies and audio tracks. ffmpeg_movie object methods Method Description $movie = new ffmpeg_movie(String path_to_media, boolean persistent) Open a video or audio file and return it as an object. path_to_media – File path of video or audio file to open. persistent – Whether to open this […]
Continue Reading →In PHP, addslashes function is used to quote string with slashes. It returns a string with backslashes before characters that need to be quoted in database queries etc. These characters are single quote (‘), double quote (“), backslash (\) and NUL (the NULL byte). For example, to insert the name O’reilly into a database, you […]
Continue Reading →This strip_tags() is identical to htmlentities() function except strip_tags function strips HTML and PHP tags from a string. Support – PHP 4, PHP 5 string strip_tags ( string $str [, string $allowable_tags ] ) This function tries to return a string with all NUL bytes, HTML and PHP tags stripped from a given str. Parameters […]
Continue Reading →Whenever add command in .bash_profile, you have re-login to make sure the new .bash_profile is reloaded. But, there is a command to reload the .bash_profile, and no need to re-login for the reload. In your Terminal enter the command below and it will reload your .bash_profile without re-login or restart. $ source .bash_profile This will […]
Continue Reading →Certain characters have special significance in HTML, and should be represented by HTML entities if they are to preserve their meanings. This function returns a string with these conversions made. If you require all input substrings that have associated named entities to be translated, use htmlentities() . Syntax string htmlspecialchars ( string $string [, […]
Continue Reading →htmlentities PHP function is used to convert all applicable characters to HTML entities. This function has four parameters named as String, Flags, Encoding and double_encode. The first parameter gets input as string. Second parameter takes flag to specify how to handle quotes. The default flag is ENT_COMPAT | ENT_HTML401. Remaining parameters are optional. This function […]
Continue Reading →.is( selector ) returns Boolean. That means returns true or false. .is( selector ) selectorA string containing a selector expression to match elements against. .is( function(index) ) function(index)A function used as a test for the set of elements. It accepts one argument, index, which is the element’s index in the jQuery collection.Within the function, this […]
Continue Reading →