This code below use to checking skype online/offline status (check skype status) [crayon-676a203a40af0456463356/] Ex 2: [crayon-676a203a40afc318275324/] Instantiate SkypeStatus object [crayon-676a203a40aff744807117/ ...
Category: PHP
<?php // File and new size $filename = 'test.jpg'; $percent = 0.5; // Content type header('Content-Type: image/jpeg'); // Get new sizes list($width, $height) = getimagesize($filen ...
<?php $my_img = imagecreate( 200, 80 ); $background = imagecolorallocate( $my_img, 0, 0, 255 ); $text_colour = imagecolorallocate( $my_img, 255, 255, 0 ); $line_colour = imagecolorallocate( $my_img, 128, 255, 0 ); ...
(Nếu bạn không tìm thấy nội dung cần tìm, nghĩa là bạn đã bị chuyển trang sang 1 nội dung khác vì một lý do nào đó ) To define the default size of the editor, use the width and height ...
Q: To client download a file, i use script below: ob_start(); $file='http://media.xxx.com/media/Audio/radio_so_69.mp3'; $name='radio_so_69.mp3'; header("Content-type: application/force-download"); header("Content ...
Q: SMTP Error: Could not connect to SMTP host A: In my case it was a lack of SSL support in PHP which gave this error. So I enabled extension=php_openssl.dll $mail->SMTPDebug = 1; also hinted towards th ...
1. Find substring in string if (strpos($title,name_on_bar($data[$i]['name'])) !== false) { $active='active'; } 2. Remove html tag echo strip_tags("Hello <b>world!</b>"); 3. string to time Conve ...