HTML5 Presentation
Speech Input
<inputtype="text"x-webkit-speech/>
Speech input is not enabled in your browser.
Try running Google Chrome with the --enable-speech-input flag.
informative.
Filed under Uncategorized
WordPress › Support » Minimalist Theme – Don’t want most recent post content to be hidden
Filed under Uncategorized
iTweak « Guimkie
iTweak is the ultimate companion for iWeb which allows you to add nearly all the missing things. To make this short and effective, here is a list of the main features:
- iTweak can back up both iWeb 06 and iWeb 08 sites in a snap
- It can add a Favicon via a simple drag and drop method
- You can integrate a Google Search bar into and for your site
- You can add Google Analytics, Statcounter and any other hitcounter in the world
- Easily embed the Haloscan Commenting system
- Add a powerful PHP contact form
- Automatically copy files from one location to another
- Search & Replace the HTML that iWeb publishes
- iTweak can password-protect your site
Filed under Uncategorized
Initial Page / Splash Page? :: Forum :: Indexhibit
Initial Page / Splash Page? :: Forum :: Indexhibit.
“”1. rename the ‘index.php’ file in the base directory to ‘home.php’
2. create an ‘index.html’ page (this will be the first/splash page) and be sure to include a link to ‘home.php’ (indexhibit & the internal pages of your site)
3. alter the last line in the ‘.htaccess’ file, replacing ‘index.php’ with ‘home.php’ (you may find it easier to do this locally, then upload and rename the file to start with a ‘.’)
that should be it, ie. I think that’s all I did!””
Filed under Uncategorized
PHP: mail – Manual
Example #2 Sending mail with extra headers.
The addition of basic headers, telling the MUA the From and Reply-To addresses:
<?php
$to = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?> Filed under Uncategorized