Go Back   Netpond ™ > Webmaster Forums and Resources > Tutorials
Register FAQ Calendar Radio and TV NP Shop Search Today's Posts Mark Forums Read

Tutorials Tutorials and helpful articles made by ponders for ponders

Shemale, Asian
Megasite, DVD Download, Gay Megasite, Gay, Shemale, Fetish PussyCash
Reply
 
LinkBack Thread Tools Display Modes
Old 04-18-2008, 04:13 AM   #21 (permalink)
Adriaan
Im A Rotterdam Hooligan
 
Join Date: Jul 2006
Posts: 3,248
Points: 45
Thanks for this tutorial Sabrina. One question though...

Can I place the thumbs that lead to the POTD on another blog or site as well? Let's say Thumblogger or Sensualwriter?
Adriaan is offline   Reply With Quote Send a private message to Adriaan
Old 04-18-2008, 04:24 AM   #22 (permalink)
ScreaM
The Bumpmeister
 
ScreaM's Avatar
 
Join Date: Sep 2004
Posts: 73,462
Points: 510
Nice one Sabrina.
__________________


(3:03:54 AM) ScreaM: are you listening to christina aguilera again?
(3:04:14 AM) DirtyJumbo: no britney spears
ScreaM is offline   Reply With Quote Send a private message to ScreaM
Old 04-18-2008, 12:19 PM   #23 (permalink)
NY Jester
BringMeYourSister.com
 
NY Jester's Avatar
 
Join Date: Nov 2007
Location: New York State
Posts: 555
Points: 2,905
Send a message via ICQ to NY Jester Send a message via AIM to NY Jester
that is fabulous tutorial sabby..Im sure many will get great use from it
__________________

Amateur Teen Hardcore
Contact Me: 147079406
NY Jester is offline   Reply With Quote Send a private message to NY Jester
Old 04-18-2008, 01:38 PM   #24 (permalink)
SabrinaDeep
Im addicted to Netpond
 
SabrinaDeep's Avatar
 
Join Date: Aug 2006
Posts: 475
Points: 2,265
Send a message via ICQ to SabrinaDeep
Quote:
Originally Posted by Adriaan View Post
Thanks for this tutorial Sabrina. One question though...

Can I place the thumbs that lead to the POTD on another blog or site as well? Let's say Thumblogger or Sensualwriter?
Hi Adriaan!

Do you mean the html code that shows the thumbs on a page?
You can put it wherever you want; that code is just a simple
<img...> tag which calls a picture.

Let me know if this is what you meant.

Kisses

Sabrina
SabrinaDeep is offline   Reply With Quote Send a private message to SabrinaDeep
Old 04-19-2008, 07:24 AM   #25 (permalink)
NinjaSteve
I sell pizza by the slice!
 
NinjaSteve's Avatar
 
Join Date: Dec 2003
Posts: 2,106
Points: 5,085
Send a message via ICQ to NinjaSteve
AWESOME!

Quick question
Code:
<?php

$today=date('d'); 


$thumbtocall='http://www.yoursite.com/potd/thumbs/'.$today.'.jpg';


header('Location: '.$thumbtocall); 
?>
So now you're calling thumbs.php to display the clickable thumb on your page.

Do you know how to add html? For example I would like to do a thumb + some text that says "Check out so and so in this sexy dress!"
NinjaSteve is offline   Reply With Quote Send a private message to NinjaSteve
Old 04-19-2008, 07:30 AM   #26 (permalink)
Hentaikid
Yep, I made this animation myself
 
Hentaikid's Avatar
 
Join Date: Apr 2004
Posts: 8,986
Points: 25
I used to do that with ssi includes, but I never knew how to do it with php, thanks that'll come in handy.
Hentaikid is online now   Reply With Quote Send a private message to Hentaikid
Old 04-20-2008, 12:07 AM   #27 (permalink)
Dupont
TCG makes the world go round
 
Join Date: Nov 2003
Posts: 26,302
Points: 3,061
bookmarked for future use
__________________
Dupont is offline   Reply With Quote Send a private message to Dupont
Old 04-22-2008, 03:43 PM   #28 (permalink)
SabrinaDeep
Im addicted to Netpond
 
SabrinaDeep's Avatar
 
Join Date: Aug 2006
Posts: 475
Points: 2,265
Send a message via ICQ to SabrinaDeep
Quote:
Originally Posted by NinjaSteve View Post
AWESOME!

Quick question
Code:
<?php

$today=date('d'); 


$thumbtocall='http://www.yoursite.com/potd/thumbs/'.$today.'.jpg';


header('Location: '.$thumbtocall); 
?>
So now you're calling thumbs.php to display the clickable thumb on your page.

Do you know how to add html? For example I would like to do a thumb + some text that says "Check out so and so in this sexy dress!"
That is very simple, Ninja. What you call from, let's say, blog is not the above code, but the script file containing that code (thumbs.php). Like this:

Quote:
<img src="http://www.YOURSITE.com/thumbs.php">
If you want to add some txt with html simply do something like this:

Quote:
<img src="http://www.YOURSITE.com/thumbs.php">
<br>
ADD YOUR TEXT HERE
and you will have the picture of the day with a line of text underneath it.

Hope this is what you were looking for.
SabrinaDeep is offline   Reply With Quote Send a private message to SabrinaDeep
Old 04-24-2008, 07:37 AM   #29 (permalink)
NinjaSteve
I sell pizza by the slice!
 
NinjaSteve's Avatar
 
Join Date: Dec 2003
Posts: 2,106
Points: 5,085
Send a message via ICQ to NinjaSteve
Thanks a ton Sabrina
NinjaSteve is offline   Reply With Quote Send a private message to NinjaSteve
Old 04-29-2008, 10:33 AM   #30 (permalink)
Gasta
Its not always sunny on sundays
 
Gasta's Avatar
 
Join Date: Sep 2007
Location: Belgium
Posts: 349
Points: 435
Thanks for sharing Sabrina
So simple I wonder why not all sponsors have it.
Gasta is offline   Reply With Quote Send a private message to Gasta
Old 05-02-2008, 04:31 AM   #31 (permalink)
NinjaSteve
I sell pizza by the slice!
 
NinjaSteve's Avatar
 
Join Date: Dec 2003
Posts: 2,106
Points: 5,085
Send a message via ICQ to NinjaSteve
Is there a way to modify this to show a picture of the month? It would be sweet to rotate a blog header monthly.
NinjaSteve is offline   Reply With Quote Send a private message to NinjaSteve
Old 06-27-2008, 09:23 AM   #32 (permalink)
underdog
(o_O)
 
underdog's Avatar
 
Join Date: Jan 2007
Posts: 112
Points: 180
Send a message via ICQ to underdog
Check out the php.net page for date(), it has all the parameters you can use. For showing a monthly picture instead, use date('m'). I have not looked at the code so much, so some more tweaking could be needed
underdog is online now   Reply With Quote Send a private message to underdog
Old 06-28-2008, 02:32 AM   #33 (permalink)
blademaster16
Is Aga really Little Buddha?
 
blademaster16's Avatar
 
Join Date: Dec 2006
Location: Romania
Posts: 966
Points: 35
sweet , this really helps thanks Sabrina
__________________
blademaster16 is offline   Reply With Quote Send a private message to blademaster16
Old 07-11-2008, 06:23 AM   #34 (permalink)
Zac
Is Aga really Little Buddha?
 
Zac's Avatar
 
Join Date: Jan 2005
Location: WWW
Posts: 3,827
Points: 2,640
Send a message via ICQ to Zac
WOW... awesome help for many
Zac is online now   Reply With Quote Send a private message to Zac
Reply


Thread Tools
Display Modes



Netpond Resources
Resource Directory Tutorials & Articles Webmaster Tools Netpond News
 
Netpond Resources
LoveDollars WildCash PussyCash SilverCash
Fetish Hits Cyberwurx Platinum Bucks Python
AEBN GroobyBucks Score-Cash XMoney
Rabbits Reviews CraziesCash TrafficCashGold EvilAngelCash
Orgycash BigClicks Webcams TubeClicks
Free Porn Paradise British Porno British Porn Models ShanesworldCash
Amateur, Fetish, Gay, HD, Reality, Solo Girl BBW, Natural Boobs
All times are GMT -4. The time now is 08:30 AM.


Powered by vBulletin® Version 3.6.10
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
vBCredits v1.4 Copyright ©2007, PixelFX Studios