-
Category:
Web Developer's Tutorials/PHP
... 54.095%
Do you really need to keep everything?
Some scripts assign values to variables when they don't need to. Take a look at this code:
$string = 'String for Output';
echo ...
Thursday, 11 October 2007
-
Category:
Web Developer's Tutorials/PHP
... print_r($result);
?>
What's That Noise?
There is, however, a simpler way of extracting all the elements of
an array. PHP 4.0 introduced a spanking-new loop type designed specifically
for ...
Sunday, 30 September 2007
-
Category:
Web Developer's Tutorials/PHP
... answer is, not easily.
While PHP has included support for the two standard methods of parsing (read: making sense
of) XML - SAX and DOM - since version 4.0, the complexity and inherent geekiness ...
Sunday, 30 September 2007
-
Category:
Web Developer's Tutorials/PHP
... and built-in session management since PHP 4.0. Both these features are enabled by default, so you don't have to do anything special to activate them. Instead, scroll down and take a look at your first ...
Sunday, 30 September 2007
-
Category:
Uncategorised Content
It only needs the input url, and works like this:
$vid = new BBHVideoData; $vid->getdata($theurl); $title = $vid->gettitle(); $desc = $vid->getdescription(); $player = $vid->showplayer();
That's ...
Sunday, 05 August 2007