Blog

Have your say. Start a blog.
What is blog?

Blog search:
Posts Posts    Photos Photos    Videos Videos    Bloggers Bloggers   

php examples tagged posts

osi

Email class php code

//////////////////////////////////////////////////////////// // EmailClass 0.5 // class for sending mail // // Paul Schreiber // php@paulschreiber.com // http://paulschreiber.com/ // // parameters // ---------- // - subj...
osi

Clever Email Validation Function ( Email-Validation ) php code

/* ======================================================================= ifsnow's email valid check function SnowCheckMail Ver 0.1 funtion SnowCheckMail ($Email,$Debug=false) $Email : E-Mail address to check. $Debug : Varia...
osi

Algorithms - aprint() - php code

function _aprint($arr, $tab = 1) // similar to print_r() { if( !is_array($arr) ) return " <span style=\"color:#336699\">".ucfirst(gettype($arr))."</span> "._slashes($arr); $space = str_repeat("\t", $tab); $out = " <sp...
osi

Algorithms -aasort() sort Associative Arrays by one or more Keys - php code

/* I use it for sorting the rows of MYSQL_ASSOC-results without the need to query the database again... it helps when you have slow querys whose result only needs to be sorted again. First transfer the result into an array like this: while($r...
osi

Algorithms - a more readable option that "print_r" - php code

/* Function coded by Stephan Pirson contact: saibot@hesperia-mud.org */ function print_a( $TheArray ) { // Note: the function is recursive echo "<table border=1>\n"; $Keys = array_keys( $TheArray )...
osi

Algorithms - ( minus - subtract ) arrays - php code

function RestaDeArrays($vectorA,$vectorB) { $cantA=count($vectorA); $cantB=count($vectorB); $No_saca=0; for($i=0;$i...


Related tags

Users using tag php examples