Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #16.0K
Ranked #2K
~29.8K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

12 Posted Topics

Member Avatar for MattTheHat

You can leave out the <a> tag then because you can just use the div:hover. [code=html]<div id="myButton" onclick="window.location = 'http://google.com';">Page 2</div>[/code]

Member Avatar for Killspree2012
0
24K
Member Avatar for teajay99

I recommend [url=http://w3schools.com/php/php_xml_simplexml.asp]SimpleXML[/url] but there's also the PHP XML DOM and the Expat Parser too. Tutorials for those may also be found on W3Schools.

Member Avatar for Bojero
0
68
Member Avatar for bhavnaJobcentre

You could try selecting the image with a primary key which is +1 from the current if you're going to the next image or -1 from the current if you're going to the previous. Also, slightly offtopic but this seems like the situation where SQLite would fit in better than …

Member Avatar for Member #120589
0
251
Member Avatar for sharal

Well it's all dynamic using a server-side language such as PHP. First of all, you must check if the user is an admin. If you have a proper usersystem, checking if the current session's userID has admin enabled would work. Then it's just a series of conditional statements and echo …

Member Avatar for sharal
0
123
Member Avatar for goldy736

If the time they've got left is stored in a client-side variable it will be easy to change it. The best way would be using Javascript to display a ticking clock that every few seconds checks it's sync and updates a flatfile using ajax.. The amount of time left is …

Member Avatar for Menster
0
3K
Member Avatar for Devendra1

Quite a few webservers have support for PHP, but you will never find better support than using Apache.

Member Avatar for jbennet
0
356
Member Avatar for karnnnnnn

If you want a much more eye-catching javascript solution try lightbox or a variation of it.. [url]http://www.huddletogether.com/projects/lightbox/[/url]

Member Avatar for Bojero
1
566
Member Avatar for karin21

Using ajax for this would make it even nicer. Also, you're not really asking much of a valid question but are rather asking someone to write the programme for you. Here's how you do it, in English: You receive all item's records from the database using a MySQL statement. The …

Member Avatar for aashishn86
0
446
Member Avatar for postal07

If you want fading effects for various elements on an html page then the jQuery javascript library is for you. The following example fades out and then fades back in all divs on a page that are clicked. [code=html]<html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(function(){ $("div").click(function() { $("div").fadeOut("slow", function() …

Member Avatar for codejoust
0
650
Member Avatar for Cynthia

Cache control is done via headers in PHP as far as I know.. Found something in the PHP documentation: [code=php]<?PHP header( 'Expires: Sat, 26 Jul 1997 05:00:00 GMT' ); header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' ); header( 'Cache-Control: no-store, no-cache, must-revalidate' ); …

Member Avatar for Bojero
0
167
Member Avatar for itsrahulk

The actual networking doesn't have to be done in PHP. The PHP can just offer a frontend such as the function of Squirrelmail. The actual mail service is a mail server, using Google you may find one very easily (even very good free ones).

Member Avatar for Bojero
0
81
Member Avatar for Member #529773

If you're referring to how it cuts up and uses different parts of the image, you can refer to how jQueryUI does it for it's icons.

Member Avatar for Bojero
0
99

The End.