Honestly it depends where your playground is. If you're doing this for fun and like tinkering around and seeing things on your smart phone then flash would be more pointless for you. If you're on a...
Agreed- that's why html5 shouldn't be the fallback but instead the main solution. It's better to code something that works for the greater majority. That way you spend less time on the edge cases. ...
Yeah Dragonfire is right, it's generally accepted best practice to do either a full on flash solution, or html5 with flash fallback. Most modern browsers will handle html5 video- if they don't, it's...
You should only scale bitmap images down- never up. Scaling pixels up forces the program to guess which pixels are valid data. I blame TV shows like CSI for their investigation shots at the police...
You should probably break this huge question down and repost it as a few questions.
1) how do i build a password protected page
2) how do i salt a password
3) how do i submit data to a database...
javascript doesn't have a default file_get_contents thing. http://phpjs.org/functions/file_get_contents:400 may help though. In general php does not convert directly over to javascript
What may work is to create 2 divs stacked one on top of the other. Make the bottom div slightly larger than the top div and then align but divs in the center vertically and horizontally. Put the...
Just to make it easier let's say the product is a tshirt. What you could do is just submit a key/value array and then use the backend to parse it appropriately. So for example:
Hmm is this a trick question like in Willow? The answer must be, "the one you know." I guess it could also depend on what you want to achieve and how much you're willing to learn from what you...
Basically everything that you have as absolute positioned does not have a height even though at one point you are setting it to 100% it still does not have a height because the parent element above...
It looks like the one they're using is using mootools as a base. I'm more of a jQuery guy so I've used this one instead http://fancybox.net/home try out the gallery area. Also I've had good luck...
You're getting 404 errors on these files:
http://www.aidi.lv/images/Background1.jpg
http://www.aidi.lv/images/Background2.jpg
http://www.aidi.lv/images/Background6.jpg
Well if you didn't want any scrolling you could wrap your content on the right inside a containing div and assign that to have css of overflow:hidden. Then you'd have to use javascript to move the...
Yeah iframes are not super awesome, but they work for select usages like this one. Validation is just a tool after all, not the law. Your other alternative is to pull in content via some json data...
Yep that's the flow you'd be looking to create. On the page that uses php to connect to the mysql database you may also want to write in some validation to make sure the information you're getting...
Is the search results page already built or that is what you're trying to build as part of this? If you already have a search results page you can just set the action of the search form to that page...
Are you familiar with jQuery? This seems like it would be a big help in this problem. You could put all your options in a div and then when the user clicks on the field you would call .toggle() ...
You should really just use swfObject for this. Some code monkeys totally did all the work on this wheel for you already. This page has examples and does exactly what you describe:...