Archive for the ‘Typing Per Page’ Category
How can I display about 400 pictures about 10 per web page without typing the name of every single one?
Question by Michael: How can I show about 400 pictures about 10 per web page without typing the name of every single one?
I’m currently designing a page for my school’s prom pictures, which I have about 400 of. I can reckon of several ways in PHP to make them show up on a webpage without typing the name of all of them, but not 10 per page. Can anyone help me out? Thank you!
Best answer:
Answer by MegaFighter_X
While (more pictures)
{
control+C one name
For(i=0; i< 10; i++)
{
control+V
change a small something that you need to make it unique.
if (i==9)
{
make new webpage
}
}
}
the fleeting version of it: don't be bone idle and just do it.
Add your own answer in the comments!
Recommended Reading
Two for the money — successful corporate duos
Two for the money — successful corporate duos
Strategic cohesion has often been the surprise fuel behind hugely successful businesses. Simply place: You don’t have to be best pals to be on the same page. But it doesn’t hurt.
Read more on MSNBC
Web Hosts Play the Fool with April 1 Pranks
April 1, 2011 — April Fool’s Day always brings the prankster out in people, and the hosting world is no exception to this rule. This morning, our inbox was peppered with press releases from many companies announcing comically absurd new products and services.
Read more on Web Host Industry Review
The Adjudicator: NRL round five
Excellent things come to those who wait and The Adjudicator’s waiting time is over. It’s Heritage Round and he’s tipping ancient school.
Read more on FOXSPORTS.com.au
Recommended Reading
A secretary makes an average of 1.7 typing errors per page of copy. What is the probability that a randomly s?
Question by mr. 205: A secretary makes an average of 1.7 typing errors per page of copy. What is the probability that a randomly s?
A secretary makes an average of 1.7 typing errors per page of copy. What is the probability that a randomly selected page of copy typed by this secretary will have 4 typing errors?
Best answer:
Answer by Adam
You can use a Poisson approximation, since the probability of a mistake is low. The probability of 4 errors on one page is therefore e^-4 * 1.7^4 / 4!.
Know better? Leave your own answer in the comments!