
Contact Me
| |
|
Blogs 1 to 20 of 24
Site Members: 1
Please use FireFox 3.5 or IE 8
(Click the image for the download page)
Posted by:
salman
On:
11/05/09
Phase 2
layout / programming
Phase 1
Design / concept
Posted by:
salman
On:
12/20/09
Work in progress strawberry shortcake
Posted by:
salman
On:
12/01/09
My first attempt at modeling a Anime style figure with oil based clay. Kinda rough but I am not done yet.
Posted by:
salman
On:
11/24/09
This was my senior project at Queens College. Inspired my Richard Serra's sculptures.
Posted by:
salman
On:
10/14/09
I have to say this is a cool looking car. Therefore worth modelling..
My progress so far...
Posted by:
salman
On:
09/07/09
How much will a website cost me???
Please read the following article: Click here. This article pretty much sums it up...
Here is a case Study..
| Website: http://www.karenmakeup.com | Price: $1000 |
|---|---|
![]() |
|
| Designed with CSS 2.1, DreamWeaver CS 4 and Photoshop CS 4 | |
| Pragrammed with HTML, CSS, PHP and MySQL data base | |
| Custom Blog Set-Up | |
| News and Events update Application | |
| 3 Dynamic Galleries | |
| Customer Trial Area With Individual logins | |
| Custom CMS | |
Posted by:
salman
On:
08/11/09
Orchis update..
Posted by:
salman
On:
08/07/09
This is my latest completed model. It's a character from digital tutors video training series. I'm still working on the finishing touches such as painting, posing.
Posted by:
salman
On:
07/29/09
My Current CG Project.
Posted by:
salman
On:
07/01/09
Using array pagination I have updated my art galleries so they are broken up into 12 images per page.
Sample: 3D Work
Sample: 2D Work
Array pagination was a easier than I thought. The solution on the Internet helped but was a little complicated for what I wanted.
So Here is my solution for Array Pagination:
//First make an array called $narray.
$total = count($narray);
//Count the array elements
$numberItems = 12;
//Pages per Item
//Determine the number of pages needed to display the entire array
$numberPages = $total % $numberItems;
if ($numberPages > 0)
{
$totalPages = ceil($total / $numberItems);
}
else
{
$totalPages = ($total / $numberItems);
}
//Display page navigation
$nav = 1;
for($p=0;$p<$totalPages;$p++)
{
$number = $nav++;
echo $pages .= ''.$number.' ';
}
Posted by:
salman
On:
06/29/09