Posts

2021 Top 4 Best Upcoming Flagship Smartphones : which are the best mobile phones for you..?

Image
  Hi here are the top 8 best upcoming flagship smartphones of 2021 with high-end level features improved cameras stunning design and many other next-generation technologies will be applied that you will really enjoy also the price and the release date of the smartphones are discussed. Number four Asus Zenfone 8 Number three OnePlus 9 Number two Huawei P50 Number one Apple iPad Pro 12.9

Accedently Replace / Remove Directory From SVN

Problem I have replace a directory from 'trunk' at revision 977 & now i want to rollback to revision 974 .....! Solution Simply follow these steps mentioned below: 1- $ svn merge -r 977:974 https://som_one.com/repos/home/trunk 2- $ svn commit -m "Recover Lost Directory" 3- $ svn update

Digital Clock in PHP

Image
This is a PHP script for displaying the current time in a digital clock on your web page. It uses individual digit images for the clock, and does not require any special library. You can download the zip format of code file from http://www.hotscripts.com/listing/digital-clock-6741/

Modify the Hosts file in Vista

Image
http://support.microsoft.com/kb/923947

Recover a lost Word document

Image
Describes several methods to locate and to recover a lost Word   document   file. Provides steps for both Vista and   Windows   XP . follow this link. http://support.microsoft.com/kb/316951

Dynamic PDF files using HTML and PHP

Image
FPDF: The PDF Generator The first and the main base for this file conversion is FPDF library. FPDF is a pure PHP class to generate PDF files on the fly. Let us start the PDF generation with a simple Hello world display. require('fpdf.php'); $pdf=new FPDF(); $pdf->AddPage(); $pdf->SetFont('Arial','B',16); $pdf->Cell(40,10,'Hello World!'); $pdf->Output(); To generate a pdf file, first we need to include library file fpdf.php. Then we need to create an FPDF object using the default constructor FPDF(). This constructor can be passed three values namely page orientation (portrait or landscape), measure unit, and page size (A4, A5, etc.,). By default pages are in A4 portrait and the measure unit is millimeter. It could have been specified explicitly with: $pdf=new FPDF('P','mm','A4'); It is possible to use landscape (L), other page formats (such as Letter and Legal) and measure units (pt, cm, in). Then

Install Zend Framework on ubuntu

Image
Download Zend Framework (.rar or .tar) from http://framework.zend.com/ Un-rar and copy this folder to /var/www/ Remove version number from that downloaded folder for example,Zend Framework-1.9.0 to Zend Framework. Goto Terminal type : gedit ~/.profile An editor will open like below image.   Now type the path where you past Zend Framework but must follow the placement of line, see below image. Now save and close this file. Next in Terminal type : gedit /etc/apache2/httpd.conf   An editor will open like below image. Now simply type an ALIAS which you want to reference to your website on localhost, for instance for my website i write " mywebz ", but must follow the format : Alias /mywebz "/var/www/myweb/public" For more help see below image. Now save and close this file. Atlast to set the above configuration you must restart the apache server. To resatrt apache server, in Terminal type : sudo /etc/init.d/apache2 restart To tes

Vertical Bar Graphs with CSS and PHP

Follow this link ..... http://terrill.ca/design/vertical_bar_graphs/#example