Infiltration
THEORY
Ethics
Observations
 
PRACTICE
Abandoned Sites
Boats
Churches
Drains/Catacombs
Hotels/Hospitals
Transit Tunnels
Utility Tunnels
Various
 
RESOURCES
Exploration Timeline
Infilnews
Infilspeak Dictionary
Usufruct Blog
Worldwide Links
Infiltration Forums home | search | login | register

Reply
Page: < 1 2 
Infiltration Forums > Private Boards Index > Web/Graphic Design > Graphic and Web Design(Viewed 13692 times)
Xanadu location:
Las Vegas NV
 
 |  | 
Re: Graphic and Web Design
<Reply # 20 on 4/9/2006 6:11 PM >
Posted on Forum: UER ForumQuote
Way togo off topics guys. HA




"Hey Fat Dave. <--Period"
pirate3 location:
oakville, ontario
 
 |  |  | 
Re: Graphic and Web Design
<Reply # 21 on 4/10/2006 1:26 AM >
Posted on Forum: UER ForumQuote
guilty as charged




ian_evil location:
Providence, Rhode Island
 
 |  |  | AIM Message | Kaos Corporation
Re: Graphic and Web Design
<Reply # 22 on 4/11/2006 5:04 PM >
Posted on Forum: UER ForumQuote
And stuff.
My php website is starting to get pieced together. I'm just coding it as a learn new stuff, so it'll probably function completely differently in the next few months.

http://www.kaoscorporation.com/

I don't know enough about databases yet to implement registration and uploads, but I plan to provide hosting for artists in the Northeast. It'll sort of be like a MySpace or Deviant art site, I guess, but with an emphasis on graffiti, urban/industrial photography, graphic design and NOT pictures of yourself in the mirror, or as an anime character.


[last edit 4/11/2006 5:05 PM by ian_evil - edited 1 times]

[center][b]New England Industrial Culture Online[/b]
Stencil/Graffiti, Street Art - Industrial/Exprimental Music - Urban Exploration
"[i]We are the ones you had to dehumanize.[/i]"[/center]
Xanadu location:
Las Vegas NV
 
 |  | 
Re: Graphic and Web Design
<Reply # 23 on 4/11/2006 6:58 PM >
Posted on Forum: UER ForumQuote
My site has registration and uploading, and I dont use SQL databases. Actually the whole goal of my website is not use any SQL databases. So basicly, It will be a UE community, not unlike here, but so much similar to make.
</offtopic>

ATM im learning Ajax, YAY!.




"Hey Fat Dave. <--Period"
ian_evil location:
Providence, Rhode Island
 
 |  |  | AIM Message | Kaos Corporation
Re: Graphic and Web Design
<Reply # 24 on 4/13/2006 2:26 AM >
Posted on Forum: UER ForumQuote
Posted by Crazydeep74
My site has registration and uploading, and I dont use SQL databases. Actually the whole goal of my website is not use any SQL databases. So basicly, It will be a UE community, not unlike here, but so much similar to make.
</offtopic>

ATM im learning Ajax, YAY!.




After I get enough practice, I plan on just frankenstiening my SMF message board, and using that registration system. They make a damn fine php forum, and it'd be stupid to waste my time trying to put together a custom built piece of junk, when SMF is designed to be rebuilt and integrated into a handful of common content management systems.



[center][b]New England Industrial Culture Online[/b]
Stencil/Graffiti, Street Art - Industrial/Exprimental Music - Urban Exploration
"[i]We are the ones you had to dehumanize.[/i]"[/center]
Sinister Crayon location:
Colorado
 
 |  | 
Re: Graphic and Web Design
<Reply # 25 on 4/13/2006 2:47 AM >
Posted on Forum: UER ForumQuote
Posted by .(ian_evil)



After I get enough practice, I plan on just frankenstiening my SMF message board, and using that registration system. They make a damn fine php forum, and it'd be stupid to waste my time trying to put together a custom built piece of junk, when SMF is designed to be rebuilt and integrated into a handful of common content management systems.


That was exactly my plan



ian_evil location:
Providence, Rhode Island
 
 |  |  | AIM Message | Kaos Corporation
Re: Graphic and Web Design
<Reply # 26 on 4/16/2006 3:04 AM >
Posted on Forum: UER ForumQuote
Alright. I've started uploading my urban exploration php display. Let me know if you find any bugs or ridiculous context errors, and then tell me it looks pretty.

http://www.kaoscor...on.com/explore.php

Now, the page works by using an included function that reads a set of multi-dimensional arrays to display the data. Right now, there's one main array called "$locations" that lists the other arrays, which are filled out individually with the correct data.

How do I set the page to display certain entries by passing a variable in the url? For example, if I wanted to display the 'Wetherill' array, would I point the browser to "explore.php?locations=Wetherill" or something?

And once I get this to work, is there an easy way to filter entries? If I want to display only entries with $locations[$loc_name]['Type'] set to "Industrial", is there an easy way to do this?



[center][b]New England Industrial Culture Online[/b]
Stencil/Graffiti, Street Art - Industrial/Exprimental Music - Urban Exploration
"[i]We are the ones you had to dehumanize.[/i]"[/center]
ian_evil location:
Providence, Rhode Island
 
 |  |  | AIM Message | Kaos Corporation
Re: Graphic and Web Design
<Reply # 27 on 4/16/2006 4:09 AM >
Posted on Forum: UER ForumQuote
Posted by .(ian_evil)
How do I set the page to display certain entries by passing a variable in the url? For example, if I wanted to display the 'Wetherill' array, would I point the browser to "explore.php?locations=Wetherill" or something?


Score. Use the $_GET variable. So,

For the url: site.org/file.php?variable=value

Use the code:
$whatever = $_GET['variable'];

Then I use some isset and if/else trickery to display locations. Neat. Scripting is fun if you bang your head against the wall enough times.

It'll be a while before I get everything fitted properly, but check it out:
http://www.kaoscor...view_loc=Wetherill
http://www.kaoscor...ew_type=Industrial

Now I just need to rebuild the included content file to output the different types of files available. Rock.



[center][b]New England Industrial Culture Online[/b]
Stencil/Graffiti, Street Art - Industrial/Exprimental Music - Urban Exploration
"[i]We are the ones you had to dehumanize.[/i]"[/center]
Xanadu location:
Las Vegas NV
 
 |  | 
Re: Graphic and Web Design
<Reply # 28 on 4/25/2006 11:07 PM >
Posted on Forum: UER ForumQuote
/me loves how your locations are setup.
Great job.

Im getting ideas



"Hey Fat Dave. <--Period"
Xanadu location:
Las Vegas NV
 
 |  | 
Re: Graphic and Web Design
<Reply # 29 on 4/27/2006 1:34 AM >
Posted on Forum: UER ForumQuote
"Now I just need to rebuild the included content file to output the different types of files available."
Are you using multiple files for this or 1. Mine uses 5, but I tried 1 and it turned out terrible, maybe ill try again. Are you using XML for it?



"Hey Fat Dave. <--Period"
Serex location:
Richmond
 
 |  | 
Re: Graphic and Web Design
<Reply # 30 on 2/18/2010 4:18 PM >
Posted on Forum: UER ForumQuote
Hmmm. Hey guys (:
It's been awhile since this has been updated buttttttttt.

I'm lissie - I'm a digital Photographer, Photomanipulator. I used to code HTML and CSS, however, have forgotten a lot of it and would really love to figure out how to code my own portfolio/website in a timely manner.

... which is sorta why i'm here actually. (:

http://www.lissiep.deviantart.com -- would be my photography
http://www.serephinex.deviantart.com -- would be my photomanipulations ><

I'm hoping to get to know s'more people at my time here at UER and would LOVE to get some of my questions answered! (:



Dark_Aaron location:
Memphis
 
 |  | 
Re: Graphic and Web Design
<Reply # 31 on 3/6/2013 6:05 PM >
Posted on Forum: UER ForumQuote
Hi. I'm Aaron. I've done various sites and web apps.

As for web technologies I use Perl/CGI, JavaScript, HTML5, and CSS. My biggest project right now is a social networking website, called cruzrr. I haven't touched the public site for it in ages, so it's kinda outdated. I've been experimenting on a local server.

Another website I have is ephasic.org. I love designing sites, and especially stuff that's different. My blog I'm writing is at http://ephasic.org/dark_aaron

Aaron



Prohobo in training.
Best thread on UER
Acadian location:
Hamilton, Ontario
 
 |  | 
Re: Graphic and Web Design
<Reply # 32 on 4/14/2013 12:45 AM >
Posted on Forum: UER ForumQuote
Posted by ian_evil
This forum is for graphic designers, web designers, and anyone interested in digital photography, illustration, photoshop, javascript, and similar.
If you join this forum, introduce yourself here, and let everyone else know what you're into, what you're good at, and anything you're interested in learning more about.

Hi all,

I started coding and graphic design back in 1996 and am a certified web designer from Mohawk College and also the IWA.

Html, css, javascripting, basic Php is not problem. But I'm more of a designer than a coder.

I ran my own web deign business for 10 years covering clients in not only Ontario and Canada, but also in the States (from Cali to NYC) but also a few sites out of India.

I use Dreamweaver 8 for my sites and for my graphics, being a Canadian, I use Corel Draw/PhotoPaint. All of my UE photos are processed through Corel PhotoPaint.

Good to find some other designers hanging out on the same forum



Infiltration Forums > Private Boards Index > Web/Graphic Design > Graphic and Web Design(Viewed 13692 times)
Page: < 1 2 
Reply

Add a poll to this thread



This thread is in a public category, and can't be made private.

Powered by AvBoard AvBoard version 1.5 alpha
Page Generated In: 63 ms