nomade
Mar 11, 09:54 AM
For those looking for the same solution here what I found:
<?php
$sql_rotation=mysql_query('SELECT * FROM photo_atelier');
$i=1;
while($ligne_rotation=mysql_fetch_array($sql_rotation)){
$array[$i]="../media/atelier/grand/".$ligne_rotation['photo']."";
$i++;
}
?>
<SCRIPT LANGUAGE="JavaScript">
var timeDelay = 3; // change delay time in seconds
var Pix = new Array
(
<?php
echo "'".$array[1]."',";
echo "'".$array[2]."',";
echo "'".$array[3]."',";
echo "'".$array[4]."',";
echo "'".$array[5]."'";
?>
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}
// End -->
</script>
<body OnLoad="startPix()">
<?php echo "<img name=ChangingPix src=".$array[1].">"; ?>
to see the result go to http://zoomaventurephoto.com/fr/atelier.php:D
<?php
$sql_rotation=mysql_query('SELECT * FROM photo_atelier');
$i=1;
while($ligne_rotation=mysql_fetch_array($sql_rotation)){
$array[$i]="../media/atelier/grand/".$ligne_rotation['photo']."";
$i++;
}
?>
<SCRIPT LANGUAGE="JavaScript">
var timeDelay = 3; // change delay time in seconds
var Pix = new Array
(
<?php
echo "'".$array[1]."',";
echo "'".$array[2]."',";
echo "'".$array[3]."',";
echo "'".$array[4]."',";
echo "'".$array[5]."'";
?>
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}
// End -->
</script>
<body OnLoad="startPix()">
<?php echo "<img name=ChangingPix src=".$array[1].">"; ?>
to see the result go to http://zoomaventurephoto.com/fr/atelier.php:D
P-Worm
Sep 10, 07:57 PM
Yeah, yeah, I'm a newbie, but I don't think I fully understand this spamming thing. Is it when you say something unrelated or something already said before?:confused:
P-Worm
P-Worm
LEVENDIZ
May 1, 02:34 AM
Thank you for your quick reply..
How long do you think it will take to have to knowledge to actually write my own App. That would be App Store quality ?
thanks again :)
How long do you think it will take to have to knowledge to actually write my own App. That would be App Store quality ?
thanks again :)
s2dio
Apr 24, 02:50 PM
Does anyone have the manual for the 11" MBA ? Great Post ! :D
Since the 11" and 13" are almost identical, I suppose that the technician guide mentioned here applies to both.
Since the 11" and 13" are almost identical, I suppose that the technician guide mentioned here applies to both.
more...
Dane D.
Feb 17, 09:24 AM
They sell them because people like myself threw out our turntable years ago. Plus, the setup and ease of use. They work great, I have an Ion brand and ripped over forty albums.
edesignuk
Dec 21, 06:01 AM
Very nicely done. But yes, completely pointless! It doesn't show what "Spymac 3" is, what its features are. WTF is the point???? :confused:
more...
dmr727
Oct 18, 04:45 AM
You'll probably get different answers but my opinion would be that unless the game requires it, don't upgrade to a later system.
^^^ I agree with this. I'm not a big fan of running 8.x on 68K hardware.
For vintage gear, I like to stick to OS versions close to what the Mac shipped with (if it were me, I'd downgrade the 575 to 7.1). Any non-rare Mac from the G3 down can be had for next to nothing these days, so if you have an app that requires 8.0, I'd go grab a machine more suitable to run it. Then again, I'm always looking for an excuse to bring home another machine. :p
^^^ I agree with this. I'm not a big fan of running 8.x on 68K hardware.
For vintage gear, I like to stick to OS versions close to what the Mac shipped with (if it were me, I'd downgrade the 575 to 7.1). Any non-rare Mac from the G3 down can be had for next to nothing these days, so if you have an app that requires 8.0, I'd go grab a machine more suitable to run it. Then again, I'm always looking for an excuse to bring home another machine. :p
John.B
Oct 22, 08:51 AM
Oracle has long dumped Oracle for OSX, so I'm not hopeful that Oracle Java 7 will ever see the light of day on Macs.
Oracle did no such thing. Were you maybe thinking of Sun? Many years ago?
No Java - No OpenOffice and a load of other apps on OSX.
You gotta admit, those are some of the fugliest and un-Mac-like applications out there.
Oracle did no such thing. Were you maybe thinking of Sun? Many years ago?
No Java - No OpenOffice and a load of other apps on OSX.
You gotta admit, those are some of the fugliest and un-Mac-like applications out there.
more...
Michaelgtrusa
May 6, 09:49 PM
Yep! Don't rely on the Best Buy web site. I called around and they had the new iMac's in stock and on sale! Just picked mine up.
On sale by how much?
On sale by how much?
87am
May 3, 08:52 PM
Best advice: you got scammed. Learn from it
more...
harpster
Apr 6, 07:13 PM
It's probably your email script...
When you have a php form using POST variables like you do (method="post") and your not sure about the form part all you need to do is to put this test code in the page your submitting to in this case contactformprocess.php.
<pre>
<?php
print_r($_POST);
?>
</pre>
<?php exit; ?>
This will print out the POST array showing you all the values that were submitted. That way you know that the form submission is good if you get the expected results and you can then debug the submit to script.
Usually I put in a exit or die statement after the closing </pre> tag to stop the script execution so I can easily see the POST array contents. The <pre> tags aren't needed but they format the array so it's easy to read.
When you have a php form using POST variables like you do (method="post") and your not sure about the form part all you need to do is to put this test code in the page your submitting to in this case contactformprocess.php.
<pre>
<?php
print_r($_POST);
?>
</pre>
<?php exit; ?>
This will print out the POST array showing you all the values that were submitted. That way you know that the form submission is good if you get the expected results and you can then debug the submit to script.
Usually I put in a exit or die statement after the closing </pre> tag to stop the script execution so I can easily see the POST array contents. The <pre> tags aren't needed but they format the array so it's easy to read.
iCaleb
Sep 14, 07:47 PM
Im going to dump it in a waterless bucket to see how good its breathing skills are. :D
more...
djsound
Feb 5, 10:47 AM
That is just a bunch of mac apps. The client I am doing this for does not even own a mac I don't think. If you look at this page they just want some like this where it says "sign up for news letter".
http://www.garibaldiresources.com/s/Home.asp
The thing is they are not great at using computers and they do not want to file all the emails that come in from that form. They want all the email address that come from that form to go to one database. That they can later send newsletters too. Same as that site. It is quite common, I see those on half the sites I go to....
http://www.garibaldiresources.com/s/Home.asp
The thing is they are not great at using computers and they do not want to file all the emails that come in from that form. They want all the email address that come from that form to go to one database. That they can later send newsletters too. Same as that site. It is quite common, I see those on half the sites I go to....
germanjulian
Jun 15, 05:32 AM
Hi,
anyone coming down? Who wants to meet up at 7am (or earlier?).
I shall bring cookies for everyone, mcdonalds for myself and some water (trying not to drink to much :D)
anyone coming down? Who wants to meet up at 7am (or earlier?).
I shall bring cookies for everyone, mcdonalds for myself and some water (trying not to drink to much :D)
more...
Klososky
Oct 19, 01:20 PM
I'll be there friday night! i gotta get one of those tshirts too!!!!
snebes
Apr 5, 05:26 PM
Is this the EKM you refer to? http://www.ekmpowershop.com/
If so, I don't think you are looking in the right place or the right tool.
Sell online using PayPal? Check out their supported hosts.
I am a Yahoo store developer and am partial to that platform for small business. That is probably out of your price range.
If so, I don't think you are looking in the right place or the right tool.
Sell online using PayPal? Check out their supported hosts.
I am a Yahoo store developer and am partial to that platform for small business. That is probably out of your price range.
more...
h1r0ll3r
May 4, 02:33 PM
Have you ever looked at the location file that saves on your PC? If so, can you tell me where iTunes saves it?
Thanks
I could be wrong but I think it's bundled within the backups from your iPhone. I've never seen this supposed file so I wouldn't know how to access it specifically. I'm sure someone else here might have some better info on this.
Thanks
I could be wrong but I think it's bundled within the backups from your iPhone. I've never seen this supposed file so I wouldn't know how to access it specifically. I'm sure someone else here might have some better info on this.
macman716
May 1, 07:25 PM
CleanMyMac is a pretty good application.
Will have to look into that thanks!
Will have to look into that thanks!
eternlgladiator
Feb 17, 08:06 PM
What was historic about it ?
http://en.wikipedia.org/wiki/Jackling_House
There you go
http://en.wikipedia.org/wiki/Jackling_House
There you go
appleguy123
May 16, 08:31 PM
Ha, one of the comments is saying it was made for the Batman TV show. Which was back in the '60s!
It's obviously someone here then. :) Do we have a rat?
It's obviously someone here then. :) Do we have a rat?
phantax
Feb 24, 01:51 PM
Only three things come to mind:
1) That you are inadvertently calling mysqli_close somewhere before a query or ping, maybe in one of your includes.
2) You are overwriting $conn somewhere else.
3) Some PHP bug in an older version of PHP perhaps. Are you guys running on CentOS / RHEL? If so I would suggest upgrading to 5.2 from the testing repos and see if that helps.
1) That you are inadvertently calling mysqli_close somewhere before a query or ping, maybe in one of your includes.
2) You are overwriting $conn somewhere else.
3) Some PHP bug in an older version of PHP perhaps. Are you guys running on CentOS / RHEL? If so I would suggest upgrading to 5.2 from the testing repos and see if that helps.
TheWart
Jun 20, 08:16 PM
I'm planning on coming. I didn't pre-order so I'll get there pretty early. I'm going to call the store this week and try to find out if they have an idea of the number of phones not already sold through pre-order.
FWIW, I was walking by the store this weekend on the way to somewhere else so I popped in and I asked one of the workers if they were planning on having very many phones beyond the pre-order batch.
He did say that they were planning on having "some" but that he wasn't sure how long that batch would last hehe.
FWIW, I was walking by the store this weekend on the way to somewhere else so I popped in and I asked one of the workers if they were planning on having very many phones beyond the pre-order batch.
He did say that they were planning on having "some" but that he wasn't sure how long that batch would last hehe.
Dagless
Mar 10, 08:36 AM
I'd buy a DSi if I was buying for 1 game. We have them for sale for around €100 brand new now. Considering 3DS is retailing at €260 here that's one hell of a difference.
DSi = 13 hour battery life, less than 1/2 price
3DS may be more powerful, but 2.5-3 hour battery life & twice the price to do what?
play a game designed for the ds. It seems like a poor trade off.
I've heard that DS games get 5-7 hours battery life on the 3DS. I guess it doesn't need the same GPU and the 3D effect also chops down battery times (with 3D off 3DS games get hours more life).
I am playing Black on my DS Lite right now. I can tell it wasnt designed for the screen on the Lite though, as in battle the lettering in the pokemon names is really cramped.
There's no resolution difference between the Lite and the DSi. The problem in Pokemon is the text is just really tiny, in-battle character names are 3 pixels wide. They'll be 3 pixels wide no matter what display. W looks like a H even on a DSi XL! It was a really poor choice of font.
DSi = 13 hour battery life, less than 1/2 price
3DS may be more powerful, but 2.5-3 hour battery life & twice the price to do what?
play a game designed for the ds. It seems like a poor trade off.
I've heard that DS games get 5-7 hours battery life on the 3DS. I guess it doesn't need the same GPU and the 3D effect also chops down battery times (with 3D off 3DS games get hours more life).
I am playing Black on my DS Lite right now. I can tell it wasnt designed for the screen on the Lite though, as in battle the lettering in the pokemon names is really cramped.
There's no resolution difference between the Lite and the DSi. The problem in Pokemon is the text is just really tiny, in-battle character names are 3 pixels wide. They'll be 3 pixels wide no matter what display. W looks like a H even on a DSi XL! It was a really poor choice of font.
Doctor Q
Jun 19, 12:05 PM
Member Angelchild: Static Avatar with command keyhttp://images.macrumors.com/im/10mcontest/829682.jpg
Member Animalk: Road Signhttp://images.macrumors.com/im/10mcontest/450781.png
Member anschris: Hi! I'm a Mac Rumor and Search Warranthttp://images.macrumors.com/im/10mcontest/606530.jpg http://images.macrumors.com/im/10mcontest/492309.jpg
Member BeyondtheTech: Escape from Windowshttp://images.macrumors.com/im/10mcontest/594819.gif
Member cambookpro: Flash and MacRumors 10 Million iPhone Iconhttp://images.macrumors.com/im/10mcontest/529198.jpg http://images.macrumors.com/im/10mcontest/184026.jpg
Member chaosbunny: MacRumors Stencil - animatedhttp://images.macrumors.com/im/10mcontest/853938.gif
Member ComputersaysNo: chinese counterfeit and How to lose a phonehttp://images.macrumors.com/im/10mcontest/589637.gif http://images.macrumors.com/im/10mcontest/269547.gif
Member crunch2010: http://images.macrumors.com/vb/images/icons/icon2.gif Annoying Windows (Animated GIF Avatar)http://images.macrumors.com/im/10mcontest/201217.gif
Member dmmcintyre3: What is needed to fake a rumor?http://images.macrumors.com/im/10mcontest/464051.png
Member harry*333: the real question is "what would steven do?"http://images.macrumors.com/im/10mcontest/323062.jpg
Member Hellhammer: Horatio urges you to participate!http://images.macrumors.com/im/10mcontest/371251.gif
Member HK6: MacRumorshttp://images.macrumors.com/im/10mcontest/922361.png
Member hobbbz: MR 10m classic and Unibody MacRumorshttp://images.macrumors.com/im/10mcontest/952826.png http://images.macrumors.com/im/10mcontest/412024.png
Member jdl8422: The Winning Entry! :)http://images.macrumors.com/im/10mcontest/612409.jpg
Member lukefinch: My Entry - Simple MacRumors Theme and http://images.macrumors.com/vb/images/icons/icon3.gif My Second Entry - Another Simple MacRumors Theme and http://images.macrumors.com/vb/images/icons/icon10.gif Home Is Where The Rumors Arehttp://images.macrumors.com/im/10mcontest/147803.gif http://images.macrumors.com/im/10mcontest/001621.gif http://images.macrumors.com/im/10mcontest/190217.gif
Member Macintosh Sauce: Avatarhttp://images.macrumors.com/im/10mcontest/226745.png
Member markm49uk: Well it did generate a LOT of traffic for MR...http://images.macrumors.com/im/10mcontest/635606.jpg
Member mflorer: Check it out! What do you think? and This one is betterhttp://images.macrumors.com/im/10mcontest/539189.jpg http://images.macrumors.com/im/10mcontest/310553.jpg
Member newteker: 10 to the seventh avatarhttp://images.macrumors.com/im/10mcontest/966992.jpg
Member ngenerator: To Do Listhttp://images.macrumors.com/im/10mcontest/207844.png
Member niuniu: I have a plan. We will take over the internet.http://images.macrumors.com/im/10mcontest/073499.gif
Member Peace: Static MR 10M and Animated MR 10M and Animated iPad/iPhone 10M. Last shot at this !!http://images.macrumors.com/im/10mcontest/530220.gif http://images.macrumors.com/im/10mcontest/509646.gif http://images.macrumors.com/im/10mcontest/650119.gif
Member roadbloc: Padlock MacRumourshttp://images.macrumors.com/im/10mcontest/601819.png
Member skikid419: Article Image Mosaichttp://images.macrumors.com/im/10mcontest/973785.png
Member Smatts123: http://images.macrumors.com/vb/images/icons/icon2.gif AVATAR: Steve's Thoughts on FLASHhttp://images.macrumors.com/im/10mcontest/378278.gif
Member Smoljan: Applehttp://images.macrumors.com/im/10mcontest/514924.jpg
Member solarthecat: MacRumors 10/7http://images.macrumors.com/im/10mcontest/179397.gif
Member Speedy Dingo: App button design entryhttp://images.macrumors.com/im/10mcontest/600592.gif
Member sphoenix: Will It Blend? That is the question.http://images.macrumors.com/im/10mcontest/904089.jpg
Member themoonisdown09: Steve as themoonisdown09http://images.macrumors.com/im/10mcontest/935658.png
Member TheSlush: Spec?ulate and Go Home and Refreshed MacRumors Logo Design and Made for MacRumors and FakeFakeFakeFake REAL FakeFakeFakeFake REAL FakeFakeFakeFake REALhttp://images.macrumors.com/im/10mcontest/553586.gif http://images.macrumors.com/im/10mcontest/087664.gif http://images.macrumors.com/im/10mcontest/104501.gif http://images.macrumors.com/im/10mcontest/184687.gif http://images.macrumors.com/im/10mcontest/492848.gif
Member unid: parked (anim gif version) and MR crore (static)http://images.macrumors.com/im/10mcontest/820951.gif http://images.macrumors.com/im/10mcontest/662544.jpg
Member UTclassof89: Missing brainhttp://images.macrumors.com/im/10mcontest/430587.gif
Member xUKHCx: What everyone wantshttp://images.macrumors.com/im/10mcontest/725512.png
Member Animalk: Road Signhttp://images.macrumors.com/im/10mcontest/450781.png
Member anschris: Hi! I'm a Mac Rumor and Search Warranthttp://images.macrumors.com/im/10mcontest/606530.jpg http://images.macrumors.com/im/10mcontest/492309.jpg
Member BeyondtheTech: Escape from Windowshttp://images.macrumors.com/im/10mcontest/594819.gif
Member cambookpro: Flash and MacRumors 10 Million iPhone Iconhttp://images.macrumors.com/im/10mcontest/529198.jpg http://images.macrumors.com/im/10mcontest/184026.jpg
Member chaosbunny: MacRumors Stencil - animatedhttp://images.macrumors.com/im/10mcontest/853938.gif
Member ComputersaysNo: chinese counterfeit and How to lose a phonehttp://images.macrumors.com/im/10mcontest/589637.gif http://images.macrumors.com/im/10mcontest/269547.gif
Member crunch2010: http://images.macrumors.com/vb/images/icons/icon2.gif Annoying Windows (Animated GIF Avatar)http://images.macrumors.com/im/10mcontest/201217.gif
Member dmmcintyre3: What is needed to fake a rumor?http://images.macrumors.com/im/10mcontest/464051.png
Member harry*333: the real question is "what would steven do?"http://images.macrumors.com/im/10mcontest/323062.jpg
Member Hellhammer: Horatio urges you to participate!http://images.macrumors.com/im/10mcontest/371251.gif
Member HK6: MacRumorshttp://images.macrumors.com/im/10mcontest/922361.png
Member hobbbz: MR 10m classic and Unibody MacRumorshttp://images.macrumors.com/im/10mcontest/952826.png http://images.macrumors.com/im/10mcontest/412024.png
Member jdl8422: The Winning Entry! :)http://images.macrumors.com/im/10mcontest/612409.jpg
Member lukefinch: My Entry - Simple MacRumors Theme and http://images.macrumors.com/vb/images/icons/icon3.gif My Second Entry - Another Simple MacRumors Theme and http://images.macrumors.com/vb/images/icons/icon10.gif Home Is Where The Rumors Arehttp://images.macrumors.com/im/10mcontest/147803.gif http://images.macrumors.com/im/10mcontest/001621.gif http://images.macrumors.com/im/10mcontest/190217.gif
Member Macintosh Sauce: Avatarhttp://images.macrumors.com/im/10mcontest/226745.png
Member markm49uk: Well it did generate a LOT of traffic for MR...http://images.macrumors.com/im/10mcontest/635606.jpg
Member mflorer: Check it out! What do you think? and This one is betterhttp://images.macrumors.com/im/10mcontest/539189.jpg http://images.macrumors.com/im/10mcontest/310553.jpg
Member newteker: 10 to the seventh avatarhttp://images.macrumors.com/im/10mcontest/966992.jpg
Member ngenerator: To Do Listhttp://images.macrumors.com/im/10mcontest/207844.png
Member niuniu: I have a plan. We will take over the internet.http://images.macrumors.com/im/10mcontest/073499.gif
Member Peace: Static MR 10M and Animated MR 10M and Animated iPad/iPhone 10M. Last shot at this !!http://images.macrumors.com/im/10mcontest/530220.gif http://images.macrumors.com/im/10mcontest/509646.gif http://images.macrumors.com/im/10mcontest/650119.gif
Member roadbloc: Padlock MacRumourshttp://images.macrumors.com/im/10mcontest/601819.png
Member skikid419: Article Image Mosaichttp://images.macrumors.com/im/10mcontest/973785.png
Member Smatts123: http://images.macrumors.com/vb/images/icons/icon2.gif AVATAR: Steve's Thoughts on FLASHhttp://images.macrumors.com/im/10mcontest/378278.gif
Member Smoljan: Applehttp://images.macrumors.com/im/10mcontest/514924.jpg
Member solarthecat: MacRumors 10/7http://images.macrumors.com/im/10mcontest/179397.gif
Member Speedy Dingo: App button design entryhttp://images.macrumors.com/im/10mcontest/600592.gif
Member sphoenix: Will It Blend? That is the question.http://images.macrumors.com/im/10mcontest/904089.jpg
Member themoonisdown09: Steve as themoonisdown09http://images.macrumors.com/im/10mcontest/935658.png
Member TheSlush: Spec?ulate and Go Home and Refreshed MacRumors Logo Design and Made for MacRumors and FakeFakeFakeFake REAL FakeFakeFakeFake REAL FakeFakeFakeFake REALhttp://images.macrumors.com/im/10mcontest/553586.gif http://images.macrumors.com/im/10mcontest/087664.gif http://images.macrumors.com/im/10mcontest/104501.gif http://images.macrumors.com/im/10mcontest/184687.gif http://images.macrumors.com/im/10mcontest/492848.gif
Member unid: parked (anim gif version) and MR crore (static)http://images.macrumors.com/im/10mcontest/820951.gif http://images.macrumors.com/im/10mcontest/662544.jpg
Member UTclassof89: Missing brainhttp://images.macrumors.com/im/10mcontest/430587.gif
Member xUKHCx: What everyone wantshttp://images.macrumors.com/im/10mcontest/725512.png
No comments:
Post a Comment