
Snooble
Members-
Posts
311 -
Joined
-
Last visited
Never
Everything posted by Snooble
-
help help help?
-
Bump bump bump.. pleeeeeease help!
-
You know exactly what I want.. thank goodness. I've been playing with div's but cant get the right combination. My code already consists of a containing table. Where do i put the div tag, and where do i put the size attributes? You'd be a lifesaver here! Honestly! Thanks Snooble
-
Bump bump bump.. pleeeeeease help!
-
Thanks for your response! Sorry it's taken so long for mine! litebearer! You're completely right! BUT : Your image shows up in photoshop as: 3.15cm x 1.47cm at 600dpi. The end physical size should be 9.2cm x 19.7cm (H x W) at 600dpi. But when I do that, pixel size increases to: 4654px x 2174px. Which then crops to the top left corner in my html table. I had success shrinking the 4654px x 2174px image by itself to 745px x 348px using dreamweaver width and height functions, and it prints PERFECT at 600dpi! BUT I CANT FIND A WAY TO DOWNSCALE A TABLE BACKGROUND IMAGE? Ahhhhhh.. driving me insane. Please help! Snooble TLDR : Downscale an image so it fits as a table bg and doesn't get cropped? 4654px x 2174px to 745px x 348px.
-
Ok, After re-reading that artical. I now know that my image has too few pixels to print at 19.2cm (W): ยท divide pixels by inches, is the outcome < 600, you have to add pixels (resamplen) 745 / ~8 = 93dpi. Now my problem lies in increasing the amount of pixels in the image (resizing and resampling on photoshop) without it affecting the ACTUAL html size of the image. How can I go about increasing the PPI whilst retaining it as the background to my table. Thank you in advance. Snooble
-
Yes thanks. After playing around with the printer I learnt that 745px stretches across an A4 page when printing with firefox. it's fixing the blurryness of the 72DPI image that I can't do. I'll read the link again now. (read it before asking here) Any other advice? Thanks Snooble
-
I thought DPI was Dots per Inch and it's what Printers use to define quality of image? PPI is pixels per inch? How can I make this 745px*348px image print at 600dpi on my printer? Using Photoshop/Dreamweaver/Any software. The physical ratio size of the print is 19.2cm:745px if that helps in any way? Sorry, and thanks for answering! Snooble
-
Hi everyone, This is bugging me a lot, and the more I read about it the less I seem to grasp the premise. I have a PHP script that loops and outputs a huge html file full of individual tables with backgrounds. My problem lies in the background; it's only 72dpi quality. When I increase the dpi (to 600) using photoshop the image expands to over 2000pixels wide and I only get the top left hand corner of the image in each table. So, question: How can I increase 72DPI to 600DPI in a table background image, in a html file, without increasing width/length (745px*348px). Hope it makes sense guys! I'm lost! Thanks in advance Snooble
-
Thank you! That's what I needed.. strtotime.. So, if I check the current day, If it's Wednesday echo "It's time", if it's not, echo the timer. Make sense? Or am I jumping ahead?
-
I have read that already.. But I'm missing the link between php and javascript. How do I find out the next wednesday? and output it in this format: 1/20/2010 8:00 PM Thank you, I just can't find anything to help me on google.
-
I would like to display how many days/hours/minutes left until 8pm Wednesday. Counting down in realtime. Can I please have some sort of direction? What function do I use? How to I make it do this every week and not just for a single date. help help help.
-
Thanks for the reply! Can I just use a countdown, based on hours on repeat.. Like a.. 168 hour countdown starting on wednesday? I know nothing about AJAX.. Snoobs
-
Thanks in advance! I run a club night every Wednesday at 8pm, I want a countdown to the night on my website at all times. So if it's Tuesday "Get yourself ready for tomorrow!", if it's Monday "2 days, 4hours, 34minutes, 20seconds till we start". Also, I'd like it to count down live.. so I guess I need to use javascript too? Thanks so much, i'd be greatful for any help. Snoobs
-
Ok.. I have the contents of the website now.. using ob_start and an include.. what's regex? How can I extract a part of the site I want..? Thank you all. Snoobs
-
I'd like to grab the source of an external .html file and grab a specific part to include on my .php page. Thanks
-
Hey, How would I copy the contents of an external html file and include it in a document on my server.. all via PHP. Just content, nothing dynamic. Is there a way with output buffering? Thank you! Snoobs
-
Hey everyone, thanks for your time: I have a .php script that inserts 10 random numbers into a row on a database 100 times. I then need to print each set of those numbers after i've formatted them. What's the best way to do this? I could fwrite the info to a doc.html and then select them all to print after? That's the only way I can imagine? Thanks for your help in advance! Any questions, suggestions i'd REALLY appreciate! Snooble
-
can anyone help today? thanks in advance Snooble
-
Hey everyone, thanks in advance: I've created a group of bingo cards in a database. The table looks like this: ID 0 1 2 3 4 5 6 7 8 9 There are 10 items on each bingo card. I need a script that will tell me how many items have been ticked on each card, and list them in the order of most ticked. What method would you use to do this? And why? Thank you! Snoobs
-
okok.. I think i can take it from here. Thank you.
-
so if i serialize the array, i can compare one WHOLE bingo card to another? Would i need to sort the results first to make the serialized arrays the same? Thanks Snooble
-
Hey everyone, thanks in advance! I'm creating bingo cards using PHP and MySQL. I wondered what the best way of doing so is.. So far my idea is: Use php to shuffle an array of values, choose first 10, (10 items per bingo card), and save each choice in a separate column under an id. I need each card to be UNIQUE, and I need to have a record of the items on the card by checking the id. Any tips on making sure each card is unique would be GREATLY appreciated, as I'm a bit stuck! Thank you! Snooble
-
Thanks PFMaBiSmAd Definitely best idea is to shuffle and just use the first ten. Thanks
-
My aim: There are 20 items in a list. I want it to pick a random 10 of those 20. None can be the same. What do you think is the easiest way? Thanks!