do you know perl? wanna make 1500 bucks?

Thread Tools
 
Search this Thread
 
Old 07-03-2007 | 04:25 PM
  #16  
SubyN00by's Avatar
Registered User
iTrader: (15)
 
Joined: Aug 2005
Posts: 12,522
From: Salinas, CA
Car Info: 1997 Acura Integra GS Sedan
Originally Posted by StupidDent
why does it have to be in perl? does he just want it to be in a better format like the second link you posted?
pls see #10 & #11

kthx.
Old 07-03-2007 | 04:33 PM
  #17  
STiYLIN's Avatar
Registered User
iTrader: (8)
 
Joined: Jul 2006
Posts: 3,160
From: Slumboldt
Car Info: I is not STiYLIN n e moar
hahaha everyone's into hydro biz now.


btw tell your friend you can taste their nutrients in the "flowers" even if you rinse for an entire week. Once they fix that tell em that ish will fly off the shelf.
Old 07-03-2007 | 05:00 PM
  #18  
DetailAddict's Avatar
Former Vendor
iTrader: (52)
 
Joined: Nov 2002
Posts: 6,912
From: San Jose, CA
Car Info: Evo X
that still doesn't answer my question of why it has to be in perl. especially since the second link provided is not in perl (flash as you said). Is perl a requirement or something or they just saw the second link, want something that looks like it, and thought it was in perl?

Originally Posted by SubyN00by
pls see #10 & #11

kthx.
Old 07-03-2007 | 05:01 PM
  #19  
SubyN00by's Avatar
Registered User
iTrader: (15)
 
Joined: Aug 2005
Posts: 12,522
From: Salinas, CA
Car Info: 1997 Acura Integra GS Sedan
me thinks post #10 meant he or the owner had it mixed up, it's in perl now and they want it in flash...
Old 07-03-2007 | 05:03 PM
  #20  
DetailAddict's Avatar
Former Vendor
iTrader: (52)
 
Joined: Nov 2002
Posts: 6,912
From: San Jose, CA
Car Info: Evo X
hmmm... could be... but by looking at the two links, i think they don't really care which language is used as long as it does the job AND LOOKS good.

Originally Posted by SubyN00by
me thinks post #10 meant he or the owner had it mixed up, it's in perl now and they want it in flash...
Old 07-03-2007 | 05:11 PM
  #21  
DetailAddict's Avatar
Former Vendor
iTrader: (52)
 
Joined: Nov 2002
Posts: 6,912
From: San Jose, CA
Car Info: Evo X
I am not a Perl guy (I’ve never done it before) so can't speak to that. But why not use PHP instead of Flash? You can utilize CSS so if you ever have to change the layout, scheme of the site, no need to hire a new guy to re-do your Flash calculator. Plus, with the little knowledge that I have with PHP (that's all I use with my site); it has a lot of mathematic functions you can use. I used them when I wrote my dent estimate page.

I love CSS, it allows me to make change in one location and the entire site gets updated.

With PHP, the work is being done on the server end and less download comparing to flash. All sources are hidden as well AND allow search engine to index the page/content which you can't do with Flash.
Old 07-03-2007 | 05:15 PM
  #22  
SubyN00by's Avatar
Registered User
iTrader: (15)
 
Joined: Aug 2005
Posts: 12,522
From: Salinas, CA
Car Info: 1997 Acura Integra GS Sedan
flash just makes it look soo nice,

and you don't need CSS with PHP, just use:

include("page_header.php");
Old 07-03-2007 | 05:18 PM
  #23  
DetailAddict's Avatar
Former Vendor
iTrader: (52)
 
Joined: Nov 2002
Posts: 6,912
From: San Jose, CA
Car Info: Evo X
and what would be in your page_header.php?

Originally Posted by SubyN00by
flash just makes it look soo nice,

and you don't need CSS with PHP, just use:

include("page_header.php");
Old 07-03-2007 | 05:19 PM
  #24  
SubyN00by's Avatar
Registered User
iTrader: (15)
 
Joined: Aug 2005
Posts: 12,522
From: Salinas, CA
Car Info: 1997 Acura Integra GS Sedan
everything I need (=
Old 07-03-2007 | 05:26 PM
  #25  
DetailAddict's Avatar
Former Vendor
iTrader: (52)
 
Joined: Nov 2002
Posts: 6,912
From: San Jose, CA
Car Info: Evo X
sounds very similar to CSS just a different method of doing it. I just have to include <link rel="stylesheet" type="text/css" href="style.css"> in my <head> tag and style.css has everything I need as well.

I am sure there are million ways to accomplish the same thing. Unfortunately with my limited web programing brain, I only know so much. CSS FTW!

Originally Posted by SubyN00by
everything I need (=
Old 07-03-2007 | 06:28 PM
  #26  
ldivinag's Avatar
03.23.67 - 06.14.13
iTrader: (3)
 
Joined: Nov 2002
Posts: 8,495
From: N37 39* W122 3*
Originally Posted by SubyN00by
flash just makes it look soo nice,

and you don't need CSS with PHP, just use:

include("page_header.php");

actually, in the grand scheme of things, one would separate presentation (CSS) vs content(data) (php).

php being a template language, would still require CSS to make the presentation look pretty.

(and yes, i do code in php and still need CSS).

Last edited by ldivinag; 07-03-2007 at 06:32 PM.
Old 07-03-2007 | 06:31 PM
  #27  
ldivinag's Avatar
03.23.67 - 06.14.13
iTrader: (3)
 
Joined: Nov 2002
Posts: 8,495
From: N37 39* W122 3*
Originally Posted by StupidDent
But why not use PHP instead of Flash?
because php cant do graphically things like flash can.

they are 2 diff things. granted, you can code php to control flash objects.

but in the end, the client is always (okay...99%) right. and if the client wants flashy animations? flash they will get.

Last edited by ldivinag; 07-03-2007 at 06:34 PM.
Old 07-03-2007 | 06:40 PM
  #28  
pcowan's Avatar
Registered User
iTrader: (4)
 
Joined: Oct 2003
Posts: 206
From: Bay Area
Car Info: '04 STi - RallyX beast
Originally Posted by StupidDent
...
But why not use PHP instead of Flash? You can utilize CSS so if you ever have to change the layout, scheme of the site, no need to hire a new guy to re-do your Flash calculator. Plus, with the little knowledge that I have with PHP (that's all I use with my site); it has a lot of mathematic functions you can use. I used them when I wrote my dent estimate page.
...
With PHP, the work is being done on the server end and less download comparing to flash. All sources are hidden as well AND allow search engine to index the page/content which you can't do with Flash.
You don't have to really worry about handling db errors in flash though:
http://www.stupiddent.com/Informatio...ate-return.php
Fatal error: Call to undefined function: open_db() in /home/hyper7/public_html/Information/info-estimate-return.php on line 35
Old 07-03-2007 | 06:52 PM
  #29  
DetailAddict's Avatar
Former Vendor
iTrader: (52)
 
Joined: Nov 2002
Posts: 6,912
From: San Jose, CA
Car Info: Evo X
haha! thanks for catching that for me! I just moved the page and must have broke it then.

Originally Posted by pcowan
You don't have to really worry about handling db errors in flash though:
http://www.stupiddent.com/Informatio...ate-return.php
Fatal error: Call to undefined function: open_db() in /home/hyper7/public_html/Information/info-estimate-return.php on line 35
Old 07-03-2007 | 09:16 PM
  #30  
evsoul's Avatar
Thread Starter
VIP Member
iTrader: (1)
 
Joined: Jul 2004
Posts: 5,588
From: Santa Rosa
Car Info: 2005 Unicorn
wow this is fun.

php=mechanics
css=pretty
html=foundation

put those together and you have iclub... just not very pretty.


anyways ya my buddy had it mixed up, he meant it was IN perl and wants it like link number 2.

any takers?



All times are GMT -7. The time now is 03:51 PM.