Showing posts with label php. Show all posts
Showing posts with label php. Show all posts
Wednesday, September 3, 2008
Thursday, August 28, 2008
PHP video tutorials
PHP, MySQL and Paypal shopping cart video tutorial.
phpvideotutorials
Job Website from scratch tutorial.
phpvideotutorials
Labels:
MySQL,
Paypal,
php,
programming,
video tutorials,
websites
Saturday, July 19, 2008
Web Hosting, ASP, PHP, Domains, Cheap
Cheap Dot Coms!
Web Hosting
Affordable web hosting for your website or for your FTP. Your site can be Windows or Linux, using PHP or ASP. Don't have a web designer or web developer? That's fine, Vectorflash.net is your source for quality web design, web development and Flash multimedia.
Domain Names
.COMs under $10.00!
Web Hosting 99.9% Uptime Guarantee!
Everything you need to give your Web site the reliable, high-performance home it deserves!
High Performance Web Hosting
High Performance Web Hosting
Secure SSL
Secure your site. Boost response and customer confidence with an affordable Turbo or High-Assurance Secure SSL Certificate.
SSL Certificates at HostNV.com
SSL Certificates at HostNV.com
Spam-Free Email Accounts
Fast, reliable, private, secure and spam-free! Free web-based email software included.
SSL Certificates at HostNV.com
SSL Certificates at HostNV.com
Traffic Blazer Product
Get traffic and commerce to your site via search engines.
Get traffic from our Traffic Blazer
Get traffic from our Traffic Blazer
Friday, March 7, 2008
programming manuals , documents
Web Development and Programming
Dreamweaver
Javascript Drop Shadow
Flash Actionscript Manual
Flash Media Server Manual
Javascript Manual
PHP great structure:
http://www.rooftopsolutions.nl/article/75
PHP Manual
senocular as1 - as2 - as3
Flash Development, PHP and Interactive Design
Dreamweaver
Javascript Drop Shadow
Flash Actionscript Manual
Flash Media Server Manual
Javascript Manual
- Javascript 1.5 - Mozilla Open Source
- Javascript 1.6 - Firefox 1.5
- Javascript 1.7 - Firefox 2
- Javascript 1.8 - Firefox 3
PHP great structure:
http://www.rooftopsolutions.nl/article/75
PHP Manual
senocular as1 - as2 - as3
Flash Development, PHP and Interactive Design
Thursday, December 13, 2007
Paginate class php
class Paginate
{
function displayObjects()
{
//echo "displsay ";
echo $this->containerStartTag;//usually starts the table;
echo "\n".$this->rowStartTag."\n";
while($this->nDisplay < ($this->nRowsMax*$this->nColumnsMax)&& $this->nObjects < $this->nObjectsTotal)
{
if($this->nColumns == $this->nColumnsMax)
{
echo $this->rowEndTag."\n".$this->rowStartTag."\n";
$this->nColumns=0;//reset columns;
}
echo "\t".$this->divisionStartTag.$this->ObjectOpenTag. " id='".$this->ObjectIDprefix.$this->nObjects."'" .$this->ObjectCloseTag.$this->nObjects.$this->divisionEndTag."\n";
$this->nColumns++;
$this->nObjects++;
$this->nDisplay++;
}
echo $this->rowEndTag."\n";
echo $this->containerEndTag."\n";//usually starts the table;
}//end function displayObjects
}
?>
changes
{
function displayObjects()
{
//echo "
echo $this->containerStartTag;//usually starts the table;
echo "\n".$this->rowStartTag."\n";
while($this->nDisplay < ($this->nRowsMax*$this->nColumnsMax)&& $this->nObjects < $this->nObjectsTotal)
{
if($this->nColumns == $this->nColumnsMax)
{
echo $this->rowEndTag."\n".$this->rowStartTag."\n";
$this->nColumns=0;//reset columns;
}
echo "\t".$this->divisionStartTag.$this->ObjectOpenTag. " id='".$this->ObjectIDprefix.$this->nObjects."'" .$this->ObjectCloseTag.$this->nObjects.$this->divisionEndTag."\n";
$this->nColumns++;
$this->nObjects++;
$this->nDisplay++;
}
echo $this->rowEndTag."\n";
echo $this->containerEndTag."\n";//usually starts the table;
}//end function displayObjects
}
?>
changes
Subscribe to:
Posts (Atom)