Skip to main content

Posts

Showing posts from October, 2010

How to send the Arabic email through PHP

<        ?          php $to = "info@bestvisualization.com"; $subject = "You have received the new email"; $body = " FULL NAME:".$_POST['T1']." GENDER:".$_POST['T2']." CITY:".$_POST['T3']." MOBILE NUMBER:".$_POST['T4']." LAND LINE NUMBER:".$_POST['T5']." DATE OF BIRTH:".$_POST['T6']." ID NUMBER:".$_POST['T7']." ANSWER FIELD:".$_POST['T8']." "; $fromName = "Rashid Bilgrami"; $fromAddress = "info@bestvisualization.com"; $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: '. $fromName . "<".$fromAddress.">" . "\r\n"; if (mail($to, $subject, $body, $header)) { echo("<p>Message successfull

Enable Sharepoint Version History

Original Link 1.If the list or library is not already open, click its name on the Quick Launch. If the name of your list or library does not appear, click View All Site Content, and then click the name of your list or library. On the Settings menu , click List Settings, or click the settings for the type of library that you are opening. For example, in a document library, click Document Library Settings. 2.Under General Settings, click Versioning settings. 3.Do one of the following: For list items, to specify that versions are tracked, click Create a version each time you edit an item in a list in the Item Version History section. For files, to specify that only one type of version is tracked, click Create major versions in the Document Version History section. For files, to specify that both major and minor versions are tracked, click Create major and minor (draft) versions in the Document Version History section. 4.You can specify how many versions of items

How to Make Flash Autofit to browser

Look for the code that embeds the Flash Movie. It should look similar to this: <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="480" height="125"> <param name="movie" value="flashmovie.swf" /> <param name="quality" value="high" /> Regards CEO Best visualization http://www.bestvisualization.com <embed src="flashmovie.swf" quality="high" type="application/x-shockwave-flash" width="480" height="125" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> To make the Flash auto zoom and auto fit into its container, you should change the code as following. The changes are shown in red. <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=&quo