Tagged Questions
0
votes
3answers
109 views
Saving multiple copies of a single image at different sizes
I'm building a file storage programme that will also display images in photo galleries to users who upload them. I was wondering if anybody could help me out.
My plan was if an image was wider than ...
5
votes
3answers
130 views
CSS Classes for semantics vs. styles in general cases
The W3C spec on the class attribute says
There are no additional restrictions on the tokens authors can use in the class attribute, but authors are encouraged to use values that describe the ...
10
votes
4answers
813 views
Which is better: to include HTML inside PHP code or outside it?
Look at this:
<?php
echo "Hello World";
?>
<br />
<?php
echo "Welcome";
?>
And now look at this:
<?php
echo "Hello World";
echo "<br />";
echo "Welcome";
?>
Which ...
5
votes
5answers
354 views
Best way to protect website application code
Background
I have a web application that I host on my own server. I have clients who use the application as is, but some have asked if they can host the application on their own server. This enables ...
1
vote
3answers
560 views
What scripting languages can be embedded within HTML?
Most of scripting languages (like Pythong, Perl, etc) generates the whole HTMLfile. However, PHP code can be embedded within html codes. PHP will process only code between <?php ?> tags and ...
2
votes
2answers
119 views
Can display issues affect SEO?
Can website display issues on certain platforms affect a website's search rankings and potentially hinder any SEO efforts?
0
votes
6answers
316 views
Should i expect real world questions from interviewing agency ? [closed]
I started coding almost a year ago. By "coding" I mean HTML(5), CSS(3), and only few times I implemented some AJAX and JavaScript. I am interviewing for a position that expects me to know HTML, CSS, ...
12
votes
7answers
17k views
How can I evaluate a candidate's knowledge of Html/CSS during an interview?
I am trying to determine some good interview questions to assess the ability of people coming in for a Html/CSS job, however that topic is extremely broad, and I'm not sure what sort of questions I ...
3
votes
3answers
683 views
Is dynamic HTML layout good from an SEO perspective?
Just wondering whether dynamically built HTML layout is fine from SEO perspectives? So let's assume e-commerce engine and its most popular page - products catalog. So 90% of the page is built using ...
0
votes
3answers
662 views
Can resizing images with css be good?
After reading Is CSS resizing of images still a bad idea?, I thought of a similar question. (too similar? should this be closed?)
Lets say you need to use 10 different product image sizes throughout ...
6
votes
3answers
706 views
Is CSS resizing of images still a bad idea?
It's always been looked at that using width/height attributes on images which aren't what the original image actual is is a bad idea. It could mean pixalated images or download sizes bigger than ...
4
votes
4answers
453 views
When are scripts inside HTML not considered a bad practice?
I am new to web development. While studying the Play framework and JSP, I noticed that they both give an option to place script (in jsp scriptlet) inside HTML, but in both books I am reading they both ...
0
votes
1answer
186 views
Creating a web application to concatenate strings to unify naming conventions
I've been tasked with creating a small web application, where users have a series of forms (I can't currently think of a better way of doing this) which will contain, either a)text input fields or ...
1
vote
3answers
271 views
Introductory to Web programming but with Experience [duplicate]
Possible Duplicate:
What should every programmer know about web development?
I'm not sure where to start with web development. I have experience with HTML and PHP fundamentals and have ...
5
votes
7answers
1k views
How to become a professional web developer from a C/C++ programmer? [closed]
I am currently a high school student and know how to use Pascal and C/C++ to take part in competitions such as the Informatics Olympiad. I have learned data structures and many algorithms to solve ...