-
Category:
Web Developer's Tutorials/Joomla!
I'll keep it short here:
Step 1. Create com_mycomp folder
Step 2. Create mycomp.php in the created folder
Step 3. Create mycomp.xml in the same folder
Step 4. Create admin.mycomp.php in the same ...
Thursday, 18 October 2007
-
Category:
Web Developer's Tutorials/PHP
... creates a temporary variable while in the process of incrementing. So, this:
++$var;
…is faster than this:
$var++;
This rule ...
Thursday, 11 October 2007
-
Category:
Web Developer's Tutorials/Joomla!
... max.
Now we must include pageNavigation.php and create mosPageNav object.
require_once( $GLOBALS['mosConfig_absolute_path'] . '/includes/pageNavigation.php' ); $pageNav = new mosPageNav( $total, ...
Sunday, 07 October 2007
-
Category:
Web Developer's Tutorials/MySQL
... then take a look at your table
structure and see whether there are any indexes that you could create
that would increase the performance of this query. key?The key actually used in this query, or NULL ...
Tuesday, 02 October 2007
-
Category:
Web Developer's Tutorials/PHP
... "keys", in
order to create a slightly different type of array. Each key is unique,
and corresponds to a single value within the array.
<?php
// define an array $fruits = array('red' ...
Sunday, 30 September 2007
-
Category:
Web Developer's Tutorials/PHP
... and have the function act on that instead of a copy. Confusing? Well, this is probably easier to understand with an example. Let's start with this: <?php // create a variable $today = "Saturday"; ...
Sunday, 30 September 2007
-
Category:
Web Developer's Tutorials/PHP
... Open the file and assign it a file handle PHP needs a file handle to read data from a file. This file handle can be created with the fopen() function, which accepts two arguments: the name and path to ...
Sunday, 30 September 2007
-
Category:
Web Developer's Tutorials/PHP
... it might
look like:
CREATE TABLE rss ( id INTEGER NOT NULL PRIMARY KEY, title varchar(255) NOT NULL, url varchar(255) NOT NULL, count INTEGER NOT NULL );
From the table above, it's clear ...
Sunday, 30 September 2007
-
Category:
Web Developer's Tutorials/PHP
... custom element collections can be created using XPath
location paths (of which, more later); these collections can then be processed using PHP's
standard loop constructs. Accessing element attributes ...
Sunday, 30 September 2007
-
Category:
Web Developer's Tutorials/PHP
... individual session counters for each browser instance. The session ID is used to identify which client made which request, and recreate the prior saved environment for each individual session. This also ...
Sunday, 30 September 2007
-
Category:
Web Developer's Tutorials/PHP
<?php // Set the content-type header("Content-type: image/png"); // Create the image $im = imagecreatetruecolor(400, 30); // Create some colors $white = imagecolorallocate($im, 255, 255, 255); $grey ...
Thursday, 13 September 2007
-
Category:
Uncategorised Content
... telecoms.bg/
this will unzip wordpress to those folders.
Step 5: The script have generated commands, you will
use to create empty databases for wordpress: Now login to mysql with
this:
mysql ...
Monday, 24 September 2007