upFFS.com | New design plx.

Rafay

var nerd; nerd = db_getUser("rafay");
Messages
2,106
Location
Pakistan
Hei, just wanted to share my opinion. The web design of upFFS.com completely sucks! You can agree with me. I just now designed a new look for the site. Tell me if it can be improved.
upFFS.png
 
I like it, but I also like the current design... I suggest opening up a vote
 
I suggest finding someone who has the HTML knowledge of how to make a desent design :/.
 
Zezombia said:
I suggest finding someone who has the HTML knowledge of how to make a desent design :/.
You also need some good design to work with.
 
Better make it real Web2.0 not like what UpFFS currently is. Working with CSS after you have sliced the .PSD isn't the hardest thing, then adding them into the (HTML) code is even easier. ;)
 
From some of my knowledge of PHP,

I believe you can add a upload form and just links at the top to the multi-uploader etc.

But if all the actions depend upon index.php (i.e www.upffs.com/index.php?action=thisaction&params=0http://http://) then it wont work, You gotta convert the HTML design to PHP.

But if all else fails, can't you seperate the forms/actions? (i.e http://upffs.com/login.php) / http://upffs.com/register.php

Just a newbie speaking PHP and solutions here, Remis will definitely pwn me on a better idea xD (I'm not affended, Knowledge is awesome, Knowing moar then the other guy is also awesome!) Feel free to keep pwning me, If people would take my ideas, No telling where the world would be....
 
"Convert the HTML design into PHP"... what?
If you're doing stuff with $_GET such as: upffs.com/index.php?area=upload or upffs.com/index.php?area=register, then:
Code:
// This inside the division of the box, or whatever...
<?php
if(!isset($_GET["area"]))
{
   // Redirect to "upload" perhaps?
}
else if($_GET["area"] == upload)
{
    echo '<form>YOUR FORM HERE</form>';
    echo "Upload your files, bla bla bla';
}
else if($_GET["area"] == register)
{
    echo '<form>REGISTER FORM HERE</form>';
    echo "Register, bla bla bla';
}
?>
Just a quick example. You can put it into your CSS theme with ease. If I had to convert "my theme" from HTML to PHP for web panel... I would still be doing it?
 
Nice theme design.
Remis will definitely pwn me on a better idea
Idea for what? I don't get where the problem is and why are you talking about the get variables?
 
Back
Top Bottom