Jump to content

vchris

Members
  • Posts

    1,529
  • Joined

  • Last visited

Everything posted by vchris

  1. vchris

    Image library

    InvisionBoard has an image gallery forum software.
  2. vchris

    java

    Don't know but would be cool to have some...
  3. Full name: Christian VAlternative name(s): vchrisBirth date(dd/mm/yyyy): 26/05/1984Gender: maleZodiacal sign: GeminiCountry of residance: CanadaCity of residance: ChelseaHeight: 5'11Weight: 160lbsEyes: greenHair: brownSmoking/Drinking/Drugs: no/sometimes/noFavourite Music: rock & alternativeFavourite Movies: Matrix trilogy, LOTR, Scarface, anything science fiction...Interest: Web programming, web design, mountain biking , golf, ...Pets: girlfriend jk :)Additional comments: registered yesterday, nice to meet everyone! nice site!
  4. Cool. So I'll send you the code when I get home. Should be in ~3 hours.
  5. aspnetguy's right. I did that same kinda site a couple months ago. Everything on the site is from the database. I used PHP and mySQL, there is also a bit of javascript for specific pages. If you just learn the basics of javascript you should be fine. If you understand how dynamic languages work, you shouldn't have any problems with PHP. Worst case, I can always help you
  6. Sorry about that. At home I think I still have a CGI script to process forms. It's really simple but it's been so long since I did that. I could always send it to you?
  7. The reason why $_REQUEST is not secure is because for example if I have http://localhost/mysite.php?id=1 and I do $_REQUEST of id then my value is 1. That means anyone who simply adds ?id=1 after the url will be able to access the page and submit the form. With $_GET or $_POST, they get the inputs from the form that was submitted.
  8. I found this script here that could help you to process your form easily. It's got great review. You need to download the script.
  9. not really... it's more of a scroll down now.
  10. I don't think so... I've only used the get method with a cgi script.Weclome for the help
  11. vchris

    Web Templates

    I don't really need support unless they have really complicated scripts. You could always buy the nice ones and resell them on your site and make big profits! imagine 10$ for 7GB, that's basically thousands. Sell them for 50$-70$. Not everyone knows about those eBay templates.
  12. Well in what language are you writting this application? ASP, PHP...
  13. If that site didn't exist I probably never would've seen HTML and this whole programming thingy
  14. I've checked on Google and I found one solution: I haven't seen that error before so I can't really help you but Google is your friend
  15. You need to add the "size" attribute to your select element. See the example below: <html><head></head><body><form><select onChange="location=this.options[this.selectedIndex].value;" style="font-family:'Arial';color:#000000;background-color:#FFCC66;font-size:10pt;" size="5"><option value="page1.html">Page1</option><option value="page2.html">Page2</option><option value="page3.html">Page3</option><option value="page4.html">Page4</option><option value="page5.html">Page5</option><option value="page6.html">Page6</option><option value="page7.html">Page7</option></select></form></body></html>
  16. I believe the method should be post but I have no idea with it says not allowed. Is it the page with your form or sendmail.php that gives you the "method not allowed" error?
  17. vchris

    Web Templates

    I wanted to buy it too lol they seemed great compared to the rest and only 10$! You can't go wrong with that. Go on eBay.com search for "web templates" and you'll see a bunch of them. Some have 12000 templates for 10$ but they're ugly, some are for 5$ for a couple hundreds... that's crazy! They even included flash banner totally customizable and looked awesome.But that site I found for web templates they looked a bit better.
  18. vchris

    Web Templates

    I've been thinking about selling some web templates online but I was checking eBay last night and I saw there was people selling like 7GB of web templates, which looked pretty good, for like 10$ US. They even allow to resell those templates. Then I go to a web template site and they sell for around 65$ US and custom for like 2500$ US.Is there a catch to this or what? How can I compete with 10$ for 7GB of temps?
  19. I don't work a lot with JS but I've used it sometimes on sites where I wanted the navigation to drop down once clicked, change cursors, calculators... I know you can do a lot of cool stuff with it. Just search google and you'll find something.
  20. I agree with F-Man. I would also make it a class since IDs are only supposed to be used once/page. Something called "red". You would not need to div in this case.HTML File:<a href="http://www.w3schools.com" class="red">W3Schools</a>CSS File:.red { color: red; }That means any tag that has a class="red" will make it red.
  21. My first time I started coding HTML was around 14 years old I think, it's been a while... I was on a website where I could customize my own page with HTML and CSS. So I started looking at some HTML tutorials to know what tags to use and learned a bit from that. Then, I started going a bit bigger. I did my own page about a game I liked UT . Then at school they wanted the students to do a small site. Then in college same thing. That one looked even better. I saw all sorts of language in college. CSS, HTML, JavaScript, Java... Which kinda motivated me to go in web programming. So when I finished my college program, I went at another college in web programming and that's where I learned asp, sql, web design and all that wonderful stuff lol :)And that's my story...
  22. Another way to do it is with a cgi script. If you send it directly to your email you won't be able to read it. With cgi you'll format the data from your form and send it to your email. Your host should support cgi scripts.
  23. I just took a look at your Joomla software. It's awesome! It seems to be very powerful. I could create my site with Joomla entirely but would maybe take more time with that but would be easier.
  24. vchris

    Best Forum

    Thanks for the info Diante. I'll have to check SMF out. Never heard of them before.
×
×
  • Create New...