| | |||||
| ||||||||
| CODE This forum is for posting code snippets and example scripts that aren't quite tutorials, but could be useful for others. You may post code snippets and/or completed scripts that you've written and want to share here. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Senior Member Join Date: Aug 2005 Location: United Kindom
Posts: 1,502
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Random add Script Hi, If you want a copy its nice and easy in php, just put where you want the ads to appear: Code: <?php
srand( microtime() * 1000000);
$advertise = rand(1,3);
//After the rand decided how many youve got and the first and last number e.g got 3, 1,3
switch($advertise)
//you can add more just use the same format
{
case 1 : $banner="site 1 image url"; $url="site one address"; break;
case 2 : $banner="site 2 image url"; $url="site two address"; break;
case 3 : $banner="site 3 image url"; $url="site 3 address"; break;
}
$display = "<a href=\"$url\" target=\"_blank\"> ";
$display.= "<img src=\"$banner\" ";
$display.= "width=\"468\" height=\"60\" border=\"0\" >";
$display.="</a>";
echo($display);
?> ????: NamePros.com http://www.namepros.com/code/183969-random-add-script.html p.s (I Like rep ) |
| |
| | #2 (permalink) |
| NamePros Regular Join Date: Oct 2005 Location: Milford MA
Posts: 689
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | And if you want FlatDB, I just wrote this. In your DB file, put: Code: http://www.hi.com||http://www.hi.com/hi.png http://www.hi2.com||http://www.hi2.com/hi.png PHP Code: |
| |
| | #3 (permalink) |
| Resistance is Futile Join Date: Apr 2006 Location: Montreal, Canada
Posts: 1,094
![]() ![]() ![]() ![]() ![]() ![]() | That's a pretty useful script, I'll use it everywhere! ![]() ????: NamePros.com http://www.namepros.com/showthread.php?t=183969 Added Random Ad Sizes. PHP Code:
__________________ Freelance Web Developer PHP, MySQL, XHTML, CSS, Javascript, jQuery, Wordpress Portfolio: www.bundy.ca
Last edited by Kadenz; 04-15-2006 at 01:47 PM.
|
| |
| | THREAD STARTER #4 (permalink) |
| Senior Member Join Date: Aug 2005 Location: United Kindom
Posts: 1,502
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | I could have added the sizes, ill do that on the next version that comes, out, cvxdes, i dont see what you are trying to do, break into my thread, mine is just a flat db, no mysql or anything involved. |
| |
| | #7 (permalink) |
| NP Maniacâ„¢ Join Date: Apr 2004 Location: Nottingham, UK
Posts: 820
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Very nice, was looking for something like this a while ago ..!
__________________ PHP/MySQL Development offered: PM me for a quote. 47ideas.com - my freelancing portfolio. |
| |
| | #8 (permalink) |
![]() Join Date: Jul 2006
Posts: 4,609
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Simply basic but applicable to any object with modifications. Thanks.
__________________ juegosjuegos Your Hotel in Austria Matratzen Domain Acquisition | Store all your favorite links! | Web Proxies Proxy List | Bookmarks | Creative Enquiry | Web Proxy List |
| |