nodjs code to post in fb page code example
Example 1: php get youtube code from url
<?php
$url = "http://www.youtube.com/watch?v=C4kxS1ksqtw&feature=relate";
parse_str( parse_url( $url, PHP_URL_QUERY ), $my_array_of_vars );
echo $my_array_of_vars['v'];
// Output: C4kxS1ksqtw
?>
Example 2: quick confirmation window for webapp link php
<a href="url_to_delete" onclick="return confirm('Are you sure you want to delete this item?');">Delete</a>