<?php function getHtmlTitle( $htmlPage, $default = 'No Title' ) ...
<?php $url = "http://www.joyent.com"; ...
PHP On Get Meta Information of an ...
by El Barto,
July 11, 2010 15:08
Well, that's nothing more t...
<?php # Domain Name Variable ...
PHP On remove http from url string
by Web Design Company,
June 07, 2010 10:58
@ Vipul : You'll have to wo...
PHP On Canonical Link Code | Remov...
by Bryan Hadaway,
June 07, 2010 08:20
Full solution here: http://...
PHP On Set apart this function to ...
by Kathy Wu,
June 06, 2010 22:01
How large is the content ta...
Dim someURL, someQueryString, splitURL someURL = "http://localhost/blabla.asp?f=foo&b=boo" splitURL = split(someURL, "?") ...
PHP On remove http from url string
by Software Web App Development,
June 03, 2010 21:02
Got lot of coding options b...
<link rel="canonical" href="http://<?php echo $_SERVER["HTTP_HOST"] ?><?php echo parse_url($_SERVER['REQUEST_URI'],PHP_URL_PATH); ?>†/>
PHP On Canonical Link Code | Remov...
by Bryan Hadaway,
May 30, 2010 14:14
Okay, I've worked out the c...
<?php
function shorturl($url){
return strlen($url) > 45) ? substr($url, 0, 30).'[ ... ]'.substr($url, -15) : $url;
...
<?php
function shorturl($url){
if( strlen($url) > 45){
...
<? // Domain Name Variable ...
PHP On Check Server Status with PHP
by Mathew Spearey,
May 22, 2010 19:34
As Casper said check what t...
<? // Domain Name Variable ...
PHP On Check Server Status with PHP
by Mathew Spearey,
May 22, 2010 19:33
As Casper said check what t...
PHP On MySQL original PHP 5 wrappe...
by Kingtona,
May 07, 2010 09:12
thank you for this code but...
PHP On MySQL original PHP 5 wrappe...
by Kingtona,
May 07, 2010 09:10
thank you for this code but...
PHP On Interfacing Tor with cURL
by dolar cotizacion,
May 05, 2010 21:11
Neat and clean code. Thanks.

is there anyway to test thi...